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 | 31 |
Tags
- mybatis
- Android
- mapreduce
- Express
- GIT
- xPlatform
- Spring
- table
- react
- Kotlin
- plugin
- R
- SSL
- window
- MSSQL
- vaadin
- Sqoop
- SPC
- tomcat
- hadoop
- 보조정렬
- es6
- JavaScript
- 공정능력
- SQL
- Python
- Java
- Eclipse
- NPM
- IntelliJ
Archives
- Today
- Total
728x90
목록2021/08/12 (1)
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(..
python
2021. 8. 12. 12:49
728x90