Pickle
pickle : 객체를 바이너리로 저장하거나 읽을 수 있는 모듈 pickle을 쓸 때, 항상 binary type을 정의해야 함. wb : binary type으로 읽기 wr : binary type으로 쓰기 dump( ) : pickle 쓰기 load( ) : pickle 읽기 import pickle profile_file = open("profile.pickle", "wb") profile = {"이름" : "박명수", "나이":30, "취미":["축구", "골프", "코딩"]} print(profile) pickle.dump(profile, profile_file) # profile에 있는 정보를 file에 저장 profile_file.close() profile_file = open("profi..