gpt4 book ai didi

python - 如何将换行符添加到 file.write() 的末尾?

转载 作者:太空狗 更新时间:2023-10-29 20:39:30 25 4
gpt4 key购买 nike

我有一个简单的 python 脚本,它输出到 author.json 文件。问题是它没有在文件末尾包含换行符。

author.json 末尾添加换行符的最佳方法是什么?

#!/usr/bin/env python

import json

with open('input.json', 'r') as handle:
data = json.load(handle)

output = open('author.json', 'w')

author = {}

for key, value in data.items():
if key == 'id':
author['id'] = value


output.write(json.dumps(author, indent=4))

最佳答案

对于 Python 3.x,您还可以使用 print() 函数,它会为您添加换行符,因此您可以代替 output.write()会做 -

print(json.dumps(author, indent=4),file=output)

示例/演示 -

>>> with open('a.txt','w') as f:
... print('asd',file=f)
... print('asd1',file=f)
... print('asd2',file=f)

文件 a.txt 包含 -

asd
asd1
asd2

关于python - 如何将换行符添加到 file.write() 的末尾?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31906083/

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