파일 읽기, 쓰기
● 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)