import requests res = requests.get('http://www.quanshuwang.com') res.encoding = 'gbk' print(res.text)
html中若有编码 在html中Ctrl+f 搜索charset查看网站的编码方式
然后res.encoding=。。。 加上编码格式,再打印
import requests res = requests.get('http://www.quanshuwang.com') res.encoding = 'gbk' print(res.text)
html中若有编码 在html中Ctrl+f 搜索charset查看网站的编码方式
然后res.encoding=。。。 加上编码格式,再打印