【发布时间】:2020-03-20 07:45:14
【问题描述】:
我有超过 1GB 的 json 文件,里面有编码的字符串。例如:
{
"id": "3",
"billing_type": {
"id": "standard",
"name": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442"
},
"area": {
"id": "1",
"name": "\u041c\u043e\u0441\u043a\u0432\u0430"
}
}
在我的情况下,我如何在我的 json 文件中像 \u041c\u043e 这样的字符串解码?
【问题讨论】:
-
这能回答你的问题吗? decode encoded JSON result in python
标签: python json python-3.x encoding utf-8