프로그래밍언어/Python

파일모드

부산딸랑이 2014. 11. 25. 23:02

Character Meaning
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' open for exclusive creation, failing if the file already exists
'a' open for writing, appending to the end of the file if it exists
'b' binary mode
't' text mode (default)
'+' open a disk file for updating (reading and writing)
'U' universal newlines mode (deprecated)

'프로그래밍언어 > Python' 카테고리의 다른 글

마우스 클릭  (0) 2015.11.09
파이썬 쿠키유지  (0) 2015.02.01
CSV파일 읽고 쓰기  (0) 2014.11.25
http.server  (0) 2014.11.11
파일복사,이동  (0) 2014.11.10