写字典到文本文件?


86

我有一本字典,正在尝试将其写入文件。

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

我不知道该怎么做,因为我还是python的初学者。如果有人知道如何解决该问题,请提供答案。

注意:我使用的是python 3,而不是python 2

Answers:


142

首先,您以读取模式打开文件并尝试将其写入。咨询-IO模式python

其次,您只能将字符串写入文件。如果要编写字典对象,则需要将其转换为字符串或序列化。

import json

# as requested in comment
exDict = {'exDict': exDict}

with open('file.txt', 'w') as file:
     file.write(json.dumps(exDict)) # use `json.loads` to do the reverse

在序列化的情况下

import cPickle as pickle

with open('file.txt', 'w') as file:
     file.write(pickle.dumps(exDict)) # use `pickle.loads` to do the reverse

对于python 3.x pickle包导入将有所不同

import _pickle as pickle

1
可行!虽然,它只写字典的内容。您能写出来吗:exDict = {111:111,222:222}
Nic

我想到了,但认为有更好的方法。虽然可以,所以谢谢!
尼克

如果您对=标志的关注度不高,则我所做的编辑可能会起作用。
hspandher '16

您以前使用它的方式:file.write('exDict ='+ json.dumps(exDict))对我来说很好,因为我现在正在使用它。
尼克

1
@JanKukacka JSON是一种标准的数据格式。什么str(exDict)会产生不总是有效的JSON。我脑海中的一个原因是,单引号在JSON文件中无效,而当我们使用strmethod时可能会出现单引号。
hspandher

49

我在python 3:

with open('myfile.txt', 'w') as f:
    print(mydictionary, file=f)

1
我喜欢这个,因为没有必要导入。以上data.write(str(dictionary))的答案将无法使用正确的字典,因为它只会在您的文件中写入<class'dict'>
Si Mon

我也很好奇的一件事是,为什么不做print(mydictionary,file = open('myfile.txt','w'))
MadmanLee

@MadmanLee我认为两者都可以,这取决于我们如何喜欢我们的代码。
NKSHELL,

1
使用open('myfile.txt','r')作为f:content = f.read(); dic = eval(内容);
NKSHELL

json比仅写入str(mydict)文件更好的原因恰恰是因为您不需要eval内容就可以将dict对象找回。 eval是一个安全专家,如果有更好的选择,则不应使用。
snakecharmerb

22
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()

12
不建议使用仅代码的答案,因为它们没有解释如何解决问题。请更新您的答案,以说明此问题已获得的其他接受和认可的答案如何改进。请查看我如何写一个好的答案
FluffyKitten

此外,with在读取和写入文件时,也应使用以下语句:stackoverflow.com/questions/3012488/…–
Falko

13

具有第一个代码块的探针是,即使您要使用写入文件,也要以“ r”打开文件 'w'

with open('/Users/your/path/foo','w') as data:
    data.write(str(dictionary))

这是正确的答案,因为问题中的代码有错误。
里卡多·里瓦尔多

当我尝试json路由时,我失败了,因为我在浮点数中有一些“ NaN”值。如果要编写JSON,就不会损坏数据本身,这是无法解决的。因此,此答案是首选的答案,因为它可以保存文本文件以准确反映该命令。
pauljohn32

7

如果您想要字典,则可以按名称从文件导入,并且还添加了排序合理的条目,并且包含要保留的字符串,您可以尝试以下操作:

data = {'A': 'a', 'B': 'b', }

with open('file.py','w') as file:
    file.write("dictionary_name = { \n")
    for k in sorted (data.keys()):
        file.write("'%s':'%s', \n" % (k, data[k]))
    file.write("}")

然后导入:

from file import dictionary_name

这仅适用于字符串,不适用于字典中的其他类型。
保罗·肯乔拉

4

对于列表理解爱好者,这会将所有key : value对写在dog.txt

my_dict = {'foo': [1,2], 'bar':[3,4]}

# create list of strings
list_of_strings = [ f'{key} : {my_dict[key]}' for key in my_dict ]

# write string one by one adding newline
with open('dog.txt', 'w') as my_file:
    [ my_file.write(f'{st}\n') for st in list_of_strings ]

1

我知道这是个老问题,但我也想分享一个不涉及json的解决方案。我个人不太喜欢json,因为它不允许轻易附加数据。如果您的起点是字典,则可以先将其转换为数据框,然后将其附加到txt文件中:

import pandas as pd
one_line_dict = exDict = {1:1, 2:2, 3:3}
df = pd.DataFrame.from_dict([one_line_dict])
df.to_csv('file.txt', header=False, index=True, mode='a')

我希望这会有所帮助。


1
为什么将外部库用于简单任务?Python Simple是更好的原则。
里卡多·里瓦尔多

不是很有用,因为我使用的大多数词典还不够简单,不足以成为有用的DataFrame对象。
pauljohn32

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


-2
import json

with open('tokenler.json', 'w') as file:
     file.write(json.dumps(mydict, ensure_ascii=False))

您可以通过添加有关错误原因的解释来改善此错误。
格雷格难以置信的
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.