Python3.4找不到urllib2


问题:在Python3.4中 运行如下代码报错,找不到urllib2

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


解决办法:

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

在python3.4里面,用urllib.request代替urllib2,另外python3之后,不能再用

print html

这样的方式,因为print这个时候已经是一个方法了。必须使用下面的方法

print(html)

你可能感兴趣的:(错误集)