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