在python2中用urllib模块去请求淘宝的IP地址查询接口,返回的是一段json字符串,如下所示:
import urllib
def get_data(ip):
url = "http://ip.taobao.com/service/getIpInfo.php?ip=" + ip
data = urllib.urlopen(url).read()
return data
if __name__ == "__main__":
result = get_data("59.151.5.5")
print(result)
返回结果如下:
{"code":0,"data":{"country":"\u4e2d\u56fd","country_id":"CN","area":"\u534e\u5317","area_id":"100000","region":"\u5317\u4eac\u5e02","region_id":"110000","city":"\u5317\u4eac\u5e02","city_id":"110100","county":"","county_id":"-1","isp":"\u4e16\u7eaa\u4e92\u8054","isp_id":"100021","ip":"59.151.5.5"}}
在返回结果中,中文是以 unicode字符串表示,这样不方便阅读,我想让结果中中文部分直接用中文表示,就像下面这样:
"city":"北京","ISP":"中国电信"
如果是python3的话返回又是这样的:
b'{"code":0,"data":{"country":"\\u4e2d\\u56fd","country_id":"CN","area":"\\u534e\\u5317","area_id":"100000","region":"\\u5317\\u4eac\\u5e02","region_id":"110000","city":"\\u5317\\u4eac\\u5e02","city_id":"110100","county":"","county_id":"-1","isp":"\\u4e16\\u7eaa\\u4e92\\u8054","isp_id":"100021","ip":"59.151.5.5"}}'
请问在 python2和python3中分别该如何转码呢?
There are two methods in Python3 that can solve your problem:
print() function
Python3 starts with encoding defined as UTF-8, so you know, just print it directly:
Utilize Unicode database
There is a built-in library
unicodedata
, you can call two methods in this library, as follows:To add, if you process characters individually, you can use the above method, but after answering just now, I discovered that your return value is a byte object. This kind of object processing is very simple in Python3. Modify your code as follows:
The return value after my test is:
Hope to adopt
In Python 3, you can convert bytes to str through the decode method:
That’s good==
Please use py3