📜  pickle save dict - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:38.958000             🧑  作者: Mango

代码示例2
import pickle

a = {'hello': 'world'}

with open('filename.pickle', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pickle', 'rb') as handle:
    b = pickle.load(handle)

print a == b