通用!Python保存一个对象的方式
参考资料:
https://kite.com/python/answers/how-to-save-a-dictionary-to-a-file-in-python
通过如下的代码,可以将Python中的字典保存到一个(二进制)文件中。当然,这个方法是通用的,调用了pickle这个包,能够保存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()