字典(JSON)数据写入文件并换行,Python

Posted zhangphil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字典(JSON)数据写入文件并换行,Python相关的知识,希望对你有一定的参考价值。

字典(JSON)数据写入文件并换行,Python

import json

if __name__ == '__main__':
    dict_data = "one": 1, "two": 2, "three": 3
    file = open('data.txt', 'a+') #可读可写,每次追加到文件后面。不是覆盖。
    json.dump(obj=dict_data, fp=file)
    file.write('\\n')
    json.dump(obj=dict_data, fp=file)
    file.close()

打开data.txt文件可以看到:

"one": 1, "two": 2, "three": 3
"one": 1, "two": 2, "three": 3

以上是关于字典(JSON)数据写入文件并换行,Python的主要内容,如果未能解决你的问题,请参考以下文章

Python追加写入文件并换行

【C语言】向文件写入东西不能写入换行

Shell 脚本写入文件换行的问题

VSCode 行尾添加分号并换行

python-字典有序并写入json文件

python写入json文件