python写入中文json

Posted Circle-C

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python写入中文json相关的知识,希望对你有一定的参考价值。

Python2 写入带有中文的数据到json文件出错:

Json.dump failing with 'must be unicode, not str' TypeError

with io.open("test.json",'w',encoding="utf-8") as outfile:
    json.dump(cards, outfile, ensure_ascii=False)

解决:

 

# -*- coding:utf-8 -*-
import codecs
with codecs.open("test.json","w") as file:
    json.dump(my_list, file, indent=4, ensure_ascii=False)

以上是关于python写入中文json的主要内容,如果未能解决你的问题,请参考以下文章

如何将这个 Objective-C 代码片段写入 Swift?

Ping多个ips并写入JSON文件python

python写入中文json

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

python迭代JSON对象并写入csv

以json格式将sqlite数据库中的数据写入python中的文本文件