파일 쓰기
f = open("data.txt", "w") f.write(data) f.close()
파일 읽기
f = open("data.txt", "r") data = f.read() print(data) f.close()