解决python3爬虫无法显示中文的问题

有时候使用python从网站上爬数据的时候,如果数据里包含中文,有时候显示的却是如下所示...\xe4\xba\xba\xef\xbc\x8c\xe6...类似与国际化

解决方法:

import urllib.request

import sys

weburl="..."

webhead=...

req=urllib.request.Request(url=weburl,headers=webhead)

response=urllib.request.urlopen(req)

content = response.read()

#获得系统的编码

type = sys.getfilesystemencoding()

#设置爬出内容的编码

content = content.decode(type)

file = open("c。txt",'w',10000)

file.write(str(content))

file.close()

print(content)

以上这篇解决python3爬虫无法显示中文的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 解决python3爬虫无法显示中文的问题 的全部内容, 来源链接: utcz.com/z/333212.html

回到顶部