Python3中编码问题

python学习网 2018-04-11 10:59:03

html = r'{"code":404,"msg":"\u8be5\u8d44\u6e90\u4e0d\u5b58\u5728"}'

print(html)
# {"code":404,"msg":"\u8be5\u8d44\u6e90\u4e0d\u5b58\u5728"}

print(html.encode('utf-8').decode('unicode-escape'))
# {"code":404,"msg":"该资源不存在"}

 

阅读(770) 评论(0)