import json
d={"name":"孙悟空","age":18,"gender":"MALE"}
f=open("d:/test.json","w",encoding='utf-8')
json.dump(d,f)
f.close()为什么写入的文件中不是汉字,而是unicode?{"name": "u5b59u609fu7a7a", "age": 18, "gender": "MALE"}
1 回答
拉丁的传说
TA贡献1789条经验 获得超8个赞
json.dump(d,f,ensure_ascii=False)
If ensure_ascii is true (the default), the output is guaranteed to have all incoming non-ASCII characters escaped. If ensure_ascii is false, these characters will be output as-is.
添加回答
举报
0/150
提交
取消