问题:在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)
版权声明:本文为博主原创文章,未经博主允许不得转载。