第一个用python3写的爬虫小例子
#!usr/bin/python import urllib.request
response = urllib.request.urlopen("http://www.baidu.com");
print (response.read());
#!usr/bin/python import urllib.request
response = urllib.request.urlopen("http://www.baidu.com");
print (response.read());