python 3.X版本 利用urllib.request 通过制定的URL抓取网易内容

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  


你可能感兴趣的:(python)