Home 파일 읽고 쓰기
Post
Cancel

Python › 파일 읽고 쓰기

파일 쓰기

1
2
3
f = open("data.txt", "w")
f.write(data)
f.close()


파일 읽기

1
2
3
4
f = open("data.txt", "r")
data = f.read()
print(data)
f.close()
❤ Recent Post
❤ How About This
❤ Visitor Counter