피클1 예시로 배우는 파이썬 (pickle) ############################################################################## Python 기초 12 : pickle# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 #############################################################################import pickle p_file = open("profile.pickle", "wb")profile = {"이름":"박명수", "나이":30, "취미":{"축구", "골푸", "코딩"}}print(profile) pickle.dump(profile, p_file)p_file.clos.. 2024. 10. 14. 이전 1 다음