Wednesday, March 6, 2019

python 파일 쓰기

간단하기 with를 사용해서 파일을 열고 바로 쓸 수 있다.

with open("foo.txt", "w") as f:
    f.write("Life is too short, you need python \n")


참고: https://wikidocs.net/26


No comments:

Post a Comment