📜  如何将 Python 变量写入文件 - Python 代码示例

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

代码示例1
#use pickle

import pickle
dict = {'one': 1, 'two': 2}
file = open('dump.txt', 'w')
pickle.dump(dict, file)
file.close()

#and to read it again
file = open('dump.txt', 'r')
dict = pickle.load(file)