import urllib2 response = urllib2.urlopen("http://www.baidu.com")
print response.read()
简单的使用urllib2获取一个网页。
注意:在上面代码的第4行是:response.read(),response对象有一个read方法,可以返回获取到的网页内容。
如果不加read,结果是:
2022-09-17 16:14:54
import urllib2 response = urllib2.urlopen("http://www.baidu.com")
print response.read()
简单的使用urllib2获取一个网页。
注意:在上面代码的第4行是:response.read(),response对象有一个read方法,可以返回获取到的网页内容。
如果不加read,结果是: