Python3 爬虫遇到“Requests.exceptions.SSLError: HTTPSConnectionPool” 错误 如图 解决方案: 将代码中 response = requests.get(u,headers=headers,timeout=5) 更改为 response = requests.get(u,headers=headers,timeout=5,verify=False) 原因: 爬取的网站证书过期 若更改后出现warning: 则再添加一行 requests.packages.urllib3.disable_warnings() 搞定~