[译]如何将字典值写入一个文本文件?

Posted everfight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[译]如何将字典值写入一个文本文件?相关的知识,希望对你有一定的参考价值。

原文来源:https://stackoverflow.com/questions/36965507/writing-a-dictionary-to-a-text-file

我有一个字典,我打算把它写入一个文件。

exDict = {1:1, 2:2, 3:3}
with open('file.txt', 'r') as file:
    file.write(exDict)

我遇到了这样的错误:

file.write(exDict)
TypeError: must be str, not dict

我修复了刚才的错误

exDict = {111:111, 222:222}
with open('file.txt', 'r') as file:
    file.write(str(exDict))

但另一个错误出现了

file.write(str(exDict))
io.UnsupportedOperation: not writable

第一个错误是因为:你要用read模式打开一个文件,尝试写入内容。这个需要查看python IO模块
第二个错误是因为:你只是将字符串写入文件。如果你想要写入字典对象,你要么需要将它转为string对象,要么将它转化为可序列化对象。
下面是Python3的写法:

import json
# as requested in comment
exDict = {'exDict': exDict}
with open('file.txt', 'w') as file:
     file.write(json.dumps(exDict)) 
# 使用json.loads读取文本变为字典
In case of serialization
import cPickle as pickle
with open('file.txt', 'w') as file:
     file.write(pickle.dumps(exDict)) 
# 使用pickle.loads读取文本变为字典

以上是关于[译]如何将字典值写入一个文本文件?的主要内容,如果未能解决你的问题,请参考以下文章

将字典写入文本文件

将字典写入文本文件?

Python:忽略文本文件的注释,该文本文件被解析为字典以写入 CSV [重复]

如何使用多个字典写入 csv?

从每个键具有多个值的字典中将数据写入 csv

如何根据位置将一些值写入ruby中的文本文件