python爬虫报错urllib.error.URLError: urlopen error [Errno 11001] getaddrinfo failed解决办法

python爬虫报错urllib.error.URLError: 解决办法
用如下代码测试

import urllib. request
response=urllib. request .urlopen('https://www.python.org')
print(response. read(). decode('utf-8'))

报错如下
python爬虫报错urllib.error.URLError: urlopen error [Errno 11001] getaddrinfo failed解决办法_第1张图片
解决办法
将链接由单引号改为双引号
如:

import urllib. request
response=urllib. request .urlopen("https://www.python.org")
print(response. read(). decode('utf-8'))

运行即可

你可能感兴趣的:(python爬虫)