美文网首页
2022-02-03 python爬虫requests.get(

2022-02-03 python爬虫requests.get(

作者: netppp | 来源:发表于2022-02-03 12:29 被阅读0次

import requests
response=requests.get(url)
print(response.text)
上面是一般的爬虫方法,这样可能会出现乱码问题

那么如何解决呢,很简单,只需要加入一行

response.encoding = response.apparent_encoding

正确代码如下
import requests
response=requests.get(url)
response.encoding = response.apparent_encoding
print(response.text)

相关文章

网友评论

      本文标题:2022-02-03 python爬虫requests.get(

      本文链接:https://www.haomeiwen.com/subject/bjvdkrtx.html