python urlopen()

首先调用urlopen需要导入urllib.request模块。

urllib.request : 

 

urlopen() : 简单来说就是打开一个URL.

 

url : 来自百度百科

 

urlopen的返回值,测试:

python urlopen()_第1张图片

可见返回值是http.client.HTTPResponsed对象。

http.client.HTTPResponsed对象:

python urlopen()_第2张图片

python urlopen()_第3张图片

详情参考:https://docs.python.org/3/library/http.client.html#http.client.HTTPSConnection

 

例子:

http://learncodethehardway.org/words.txt的内容为:

python urlopen()_第4张图片

代码:

python urlopen()_第5张图片

python urlopen()_第6张图片

打印:

python urlopen()_第7张图片

 

你可能感兴趣的:(python初学记录)