python将dict中的unicode打印成中文

Posted

tags:

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

python将dict中的unicode打印成中文

import json

a = {u‘content‘: {u‘address_detail‘: {u‘province‘: u‘\\u5409\\u6797\\u7701‘, u‘city‘: u‘\\u957f\\u6625\\u5e02‘, u‘street_number‘: u‘‘, u‘district‘: u‘‘, u‘street‘: u‘‘, u‘city_code‘: 53}, u‘point‘: {u‘y‘: u‘43.89833761‘, u‘x‘: u‘125.31364243‘}, u‘address‘: u‘\\u5409\\u6797\\u7701\\u957f\\u6625\\u5e02‘}, u‘status‘: 0, u‘address‘: u‘CN|\\u5409\\u6797|\\u957f\\u6625|None|CERNET|0|0‘}


print json.dumps(a).decode(‘unicode-escape‘)


输出:
{"content": {"address_detail": {"province": "吉林省", "city": "长春市", "street_number": "", "district": "", "street": "", "city_code": 53}, "address": "吉林省长春市", "point": {"y": "43.89833761", "x": "125.31364243"}}, "status": 0, "address": "CN|吉林|长春|None|CERNET|0|0"}






以上是关于python将dict中的unicode打印成中文的主要内容,如果未能解决你的问题,请参考以下文章

Python 打印list是显示unicode,转化成中文

Pythonic方法编码嵌套在dict中的列表项

Python将list中的unicode转换成中文显示

请教python3如何打印中文

Python各种坑--JSON.load成Unicode

Python中 设计一个程序,输出你的中文姓名和姓名中每个字的unicode编码。(要求