본문으로 바로가기

With

category onYouTube/Python 2021. 3. 14. 14:21
  • with open(" ", " ") as : 파일을 열고 닫는 것을 자동으로 처리

with open("study.txt", "w", encoding="ttf8") as study_file:
    study_file.wirte("파이썬을 열심히 공부하고 있어요.")

with open("study.txt", "r", encoding="utf8") as study_file:
    print(study_file.read())

import pickle
with open("profile.pickle", "rb") as profile_file:
    print(pickle.load(profile_file))

 

 

-출처-

www.youtube.com/watch?v=kWiCuklohdY&t=10728s

'onYouTube > Python' 카테고리의 다른 글

상속  (0) 2021.03.14
클래스 메소드  (0) 2021.03.14
Pickle  (0) 2021.03.14
파일 입출력  (0) 2021.03.14
다양한 출력 포맷  (0) 2021.03.14