Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tomcat
- IntelliJ
- SQL
- 보조정렬
- window
- JavaScript
- Sqoop
- MSSQL
- Eclipse
- mapreduce
- SSL
- Kotlin
- react
- table
- hadoop
- Express
- NPM
- R
- GIT
- Android
- mybatis
- vaadin
- SPC
- Spring
- Python
- es6
- Java
- xPlatform
- 공정능력
- plugin
Archives
- Today
- Total
DBILITY
python archive file 다루기 본문
반응형
binary는 mode에 b가 추가 됨
# archive write mode
f = open('a.txt', encoding='utf-8', mode='w')
f.write('나 --> 언제 왔냐?\n')
f.write('너 --> 쪼끔 전에 왔다.\n')
f.close()
# archive append mode
f = open('a.txt', encoding='utf-8', mode='a')
f.write('나 --> 뭐하러 왔냐?\n')
f.write('너 --> 내비~족구화! 길을 잘못 들어서..\n')
f.write('나 --> 머더뻐꾹!\n')
f.close()
# archive read mode
f = open('a.txt', encoding='utf-8', mode='r')
w=f.read()
print(w)
f.close()
나 --> 언제 왔냐?
너 --> 쪼끔 전에 왔다.
나 --> 뭐하러 왔냐?
너 --> 내비~족구화! 길을 잘못 들어서..
나 --> 머더뻐꾹!
반응형
'python' 카테고리의 다른 글
python lottery number generation exercise ( 로또 번호 생성) (0) | 2021.08.13 |
---|---|
python html parse and image file save (0) | 2021.08.13 |
python module ( 모듈 ) (0) | 2019.05.05 |
python user defined function ( 사용자 정의 함수 ) (0) | 2019.05.04 |
python control statement ( 제어문 ) (0) | 2019.05.04 |
Comments