序列化
import pickle friend = {"Dan": [20, "Lodon", 123123], "Mary" : [24, "Madi", 333333]} with open("friend.dat", "wb") as f: pickle.dump(friend, f)
反序列化
with open("friend.dat", "rb") as f: obj = pickle.load(f) print(obj)
博客园 © 2004-2026 浙公网安备 33010602011771号 浙ICP备2021040463号-3