📌  相关文章
📜  将字典保存到 pickle - Python 代码示例

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

代码示例1
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)