본문 바로가기

파이썬(Python)/간단한 연습

with open (path, 'r+') as x : 와 with open (path, 'w') as x: 의 차이점

r+를 쓰면, 앞에서부터 '수정 모드'로 바꾸고

w를 쓰면, 전체를 지운뒤 새로 쓰는 형태로 간다.

 

나머지 모드는

https://blockdmask.tistory.com/454

 

[python] 파이썬 파일읽기, 파일쓰기 (open , close, write, read, tell, seek)

안녕하세요. BlockDMask 입니다. 오늘은 파이썬에서 파일을 생성하고 읽고 쓰는 파일 입출력을 한번 다뤄볼까 합니다. 여기서 다룰 파일 관련 함수는 open, close, write, writeline, writelines, read, readline, rea

blockdmask.tistory.com