Bootstrap

python中 Unicode编码转化成中文

在爬取内容的时候获得的是json格式,然后编码就是这样,想要转化为中文
"name":"\u534e\u5357\u7406\u5de5\u5927\u5b66"

方法:

text = res.text.encode("utf-8").decode("unicode_escape")

res.text为我获取的这些数据,然后就能成为中文了

 

 

;