如何在python中从字典创建文件?

时间:2017-12-01 02:19:46

标签: python file dictionary

如何在python中从字典创建文件?

例如这是我的字典: dict = {'a':1,'b':2,'c':3} 如何将其显示为显示此文件的文件的第一个句子? 一,1.B,2.C,3

感谢任何回答我问题的人。

2 个答案:

答案 0 :(得分:3)

你可以试试这个:

f = open('file.txt', 'w')
dict = {'a':1,'b':2,'c':3}
f.write('.'.join('{},{}'.format(a, b) for a, b in dict.items())+'.\n')
f.close()

答案 1 :(得分:0)

import json
mydict = {'a':1,'b':2,'c':3} 
with open('dict_file.txt', 'w') as file:
     file.write(json.dumps(mydict))

希望这有帮助。