● open('파일명', '모드')
- 모드 : r(읽기), w(쓰기), a(추가하기)
- w모드는 파일이 이미 존재할 시 덮어씌움
● close() : 메모리 반환
f = open("memo.txt", 'w')
content = f.read()
print(content)
f.close()
● with 문
- close()를 사용하지 않아도 with문이 끝나면 메모리를 반환함
with open("memo.txt", 'w') as f:
content = f.read()
print(content)
'Langauge > Python' 카테고리의 다른 글
[라이브러리] csv 읽어오기 (0) | 2020.12.22 |
---|---|
예외처리 (try-except-else-finally) (0) | 2020.12.22 |
PEP8 (Python Enhancement Proposal 8) (0) | 2020.12.22 |
*args, **kwargs (0) | 2020.12.21 |
Python 클래스 (0) | 2020.12.09 |