Basic | Python File I/O

파이썬 파일 input/output

file io

file open

f = file.open("test_file.txt")
lines = f.read()
# ...
f.close()

with open() 구문

with open("test_file.txt") as f:
  # 들여쓰기 내에서 파일 사용
# f.close() 필요 없음