问题1:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb5 in position 251: invalid start byte
解决方法:
我们一般在使用requests请求网页时将decode()加入ignore或replace即可跳过以上错误
html = requests.get().content.decode('utf-8','ignore')
问题2:查看网站响应码,并指定目的编码方式
res = requests.get()
print(res.encoding) #查看网站响应回来的编码
res.encoding = 'utf-8' #可指定其他编码方式