python如何解析utf8字符串

时间:2014-09-09 02:09:06

标签: python utf8-decode

现在我通过http请求获得了一些信息。但我发现String无法解析为正确的字符集。这是我的代码:

req = urllib2.Request(URL, urllib.urlencode({"token": token}))
resp = urllib2.urlopen(req)
result = resp.read()
print result  #\u8c22\u777f
print repr(result ) #'\\u8c22\\u777f'

正确的字符串应为\u8c22\u777f,但\u会转义为\\u。我该怎么办?

0 个答案:

没有答案