with open('example.txt','w') as f:
f.write('asdf')
with open('example.txt','r') as f:
print(f.read())
## 출력
asdf #파일 내용
옵션으로는 t(텍스트 모드), b(바이너리 모드)가 있음
'프로그래밍 > Python' 카테고리의 다른 글
클래스(Class) (0) | 2020.03.13 |
---|---|
함수 (0) | 2020.03.13 |
세트(set), 집합 (0) | 2020.03.13 |
문자열 응용 (0) | 2020.03.13 |
파이썬 리스트 컴프리헨션(list comprehension) (0) | 2020.03.13 |