我有一本字典,我正在尝试将其写入文件。
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
答案 0 :(得分:71)
首先,您在读取模式下打开文件并尝试写入文件。 咨询 - IO modes 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 :(得分:15)
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()
答案 2 :(得分:12)
我在python 3中这样做:
with open('myfile.txt', 'w') as f:
print(mydictionary, file=f)
答案 3 :(得分:9)
您的第一个代码块的问题是您将文件打开为'r',即使您想使用'w'
with open('/Users/your/path/foo','w') as data:
data.write(str(dictionary))
答案 4 :(得分: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 ]
答案 5 :(得分:2)
如果您想要字典,则可以按名称从文件导入,并且还添加了排序合理的条目,并且包含要保留的字符串,您可以尝试以下操作:
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
答案 6 :(得分:1)
df['x'], df['y'] = np.sort(df[['Team', 'Adversary']], axis=1).T
df = df.sort_values(['x', 'y'], ignore_index=True).drop(['x', 'y'], 1)
答案 7 :(得分:0)
我知道这是一个老问题,但我也想分享一个不涉及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')
我希望这会有所帮助。
答案 8 :(得分:0)
导入json exDict = {1:1,2:2,3:3} file.write(json.dumps(exDict))
https://developer.rhino3d.com/guides/rhinopython/python-xml-json/
答案 9 :(得分:-2)
import json
with open('tokenler.json', 'w') as file:
file.write(json.dumps(mydict, ensure_ascii=False))