爬虫解析出来的网页中文部分都是乱码(运用的模块requests, BeautifulSoup)

编码问题

起因:解析出来的网页中文部分都是乱码(运用的模块requests, BeautifulSoup)

原因:requests出现编码问题(可能)

解决办法:html = requests.get(url, headers = header).text

改为html = requests.get(url, headers = header).content

你可能感兴趣的:(python---错误集锦,python)