【Python错误解决】No module named 'urllib2' 解决办法

主要问题出现在Python版本,你用的是3版本,写的代码还是2版本格式,举例子:

import urllib2  
response = urllib2.urlopen('http://www.123456.com/')  
html = response.read()  
print html  

报错: No module named 'urllib2' 

解决方法:

urllib.request代替urllib2

response.read()改为 resp.read()

print html 加括号
可以将代码换成:

import urllib.request
resp=urllib.request.urlopen('http://www.123456.com')
html=resp.read()
print(html)

 

你可能感兴趣的:(Python,错误解决)