gpt4 book ai didi

python - 停止 python 将 json 文件写入一行

转载 作者:太空狗 更新时间:2023-10-29 20:12:19 26 4
gpt4 key购买 nike

如何强制 Python 停止将我的 .json 文件写入一行?我尝试将写入命令 with open('manifest.json', 'wb') as f: 更改为 with open('manifest.json', 'w') as f : 但它仍在写入一行。

代码

import json

with open('manifest.json', 'r') as f:
json_data = json.load(f)
json_data['server-version'] = "xxxx-x.x.x"

with open('manifest.json', 'w') as f:
f.write(json.dumps(json_data))

print('Successful.')

最佳答案

pretty-print 使用缩进参数

print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4, separators=(',', ': ')))

关于python - 停止 python 将 json 文件写入一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32130642/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com