Python保存并读取一个字典

Posted 思念殇千寻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python保存并读取一个字典相关的知识,希望对你有一定的参考价值。

  参考资料:

  https://kite.com/python/answers/how-to-save-a-dictionary-to-a-file-in-python  

dictionary_data = {"a": 1, "b": 2}

a_file = open("data.pkl", "wb")
pickle.dump(dictionary_data, a_file)
a_file.close()

a_file = open("data.pkl", "rb")
output = pickle.load(a_file)
print(output)
## OUTPUT
## {‘a‘: 1, ‘b‘: 2}
a_file.close()

以上是关于Python保存并读取一个字典的主要内容,如果未能解决你的问题,请参考以下文章

请教商品列表保存在json文件中,如何在python中读取文件中并保存到字典中

python3怎么读取目录下所有txt文件,并将文件名读取顺序保存到字典

python保存字典和读取字典pickle

python列表里面有字典,该怎么读取字典中的value

13 个非常有用的 Python 代码片段

将字典保存为 Python 脚本