---恢复内容开始---
#python2
import urllib2
#python3
import urllib.request
html=urllib.request.urlopen(‘http://www.sogou.com‘)
print (html)
#<http.client.HTTPResponse object at 0x0000000002D84BA8
print (html.read())
urllib.request,
urllib.error,
urllib.parse,
urllib.robotparser四个子模块,
介绍urllib.request的简单用法.首先是urlopen函数,用于打开一个URL
原文:http://www.cnblogs.com/lfqcode/p/6057411.html