71

我的代码创建了一个字典,然后将其存储在一个变量中。我想将每个字典写入一个 JSON 文件,但我希望每个字典都在一个新行上。

我的字典:

hostDict = {"key1": "val1", "key2": "val2", "key3": {"sub_key1": "sub_val2", "sub_key2": "sub_val2", "sub_key3": "sub_val3"}, "key4": "val4"}

我的部分代码:

g = open('data.txt', 'a')
with g as outfile:
  json.dump(hostDict, outfile)

这会将每个字典附加到“data.txt”,但它是内联的。我希望每个字典条目都在新行上。任何意见,将不胜感激。

4

2 回答 2

136

你的问题有点不清楚。如果您hostDict在循环中生成:

with open('data.txt', 'a') as outfile:
    for hostDict in ....:
        json.dump(hostDict, outfile)
        outfile.write('\n')

如果您的意思是希望其中的每个变量都hostDict在新行上:

with open('data.txt', 'a') as outfile:
    json.dump(hostDict, outfile, indent=2)

indent设置关键字参数时,它会自动添加换行符。

于 2013-06-11T22:50:51.897 回答
15

为避免混淆,请同时解释问题和答案。我假设发布此问题的用户想要以 JSON 文件格式保存字典类型对象,但是当用户使用时json.dump,此方法将其所有内容转储在一行中。相反,他想将每个字典条目记录在一个新行上。要实现此用途:

with g as outfile:
  json.dump(hostDict, outfile,indent=2)

使用indent = 2帮助我将每个字典条目转储到新行。谢谢@agf。重写此答案以避免混淆。

于 2019-12-09T15:57:12.443 回答