import urllib.request
resp=urllib.request.urlopen('http://www.baidu.com')
html=resp.read()
print(html)
python 3.X和python2.7版本的地方是
3.X用的是urllib.request
2.7用的是urllib2
2.7版本是
import urllib2
response = urllib2.urlopen('http://www.baidu.com/')
html = response.read()
print html