[Python3] 파일 입출력과 이미지(파일) 다운로드
파일입출력 open (name, option) 에서의 option 은 6가지가 있다. option Read or Write Seek 파일이 존재하지 않을 경우 생성여부 r R 0X r+ R/W 0X w W 0O w+ R/W 0O a W EOFO a+ R/W EOFO 쓰기fw = open('test.txt', 'w') fw.write('These are python tutorials for beginner\n') fw.write('I like it\n') fw.close() 읽기fr = open('test.txt', 'r') line = fr.readline() print(line) # -> These are python tutorials for beginner fr.seek(0) sentences = f..
기타 개발/Python
2017. 2. 22. 00:37
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Block
- workerThread
- Swfit
- NSManagedObjectModel
- dictionary
- EffectiveObjectiveC
- UIView
- CIImage
- 읽기 좋은 코드가 좋은 코드다
- CGImage
- RunLoop
- optional
- Swift
- Arc
- Swift 3.0
- applicationWillResignActive
- NSManagedObject
- ios
- string
- HTTP
- AWS
- docker
- NSManagedObjectContext
- set
- Swift3
- delegate
- thread
- coredata
- Swift 3
- 꺼내먹어요
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함