Writing a dictionary to a text file?

前端 未结 10 815
挽巷
挽巷 2020-11-28 03:16

I have a dictionary and am trying to write it to a file.

exDict = {1:1, 2:2, 3:3}
with open(\'file.txt\', \'r\') as file:
    file.write(exDict)
10条回答
  •  无人及你
    2020-11-28 03:58

    fout = "/your/outfile/here.txt"
    fo = open(fout, "w")
    
    for k, v in yourDictionary.items():
        fo.write(str(k) + ' >>> '+ str(v) + '\n\n')
    
    fo.close()
    

提交回复
热议问题