python \uxxxx转中文,Python列表中的字典 \uxxxx转中文,

import json

a = [{u'mobile': u'', u'userName': u'\u738b\u738d', u'idCard': u'', u'roleFlag': 7}]
print json.dumps(a).decode("unicode_escape")

输出结果是:

[{"mobile": "", "userName": "王玍", "idCard": "", "roleFlag": 7}]

例子二:

aa = u'\u738b\u738d'
print json.dumps(aa).decode("unicode_escape")

输出结果:

"王玍"
上一篇:python安装Jieba中文分词组件并测试


下一篇:关于bochs用X11启动的说明