1. 程式人生 > >python3下匯入urllib2與python2下匯入urllib2

python3下匯入urllib2與python2下匯入urllib2

Python 3.* 用urllib.request來代替原來的urllib2,因此呼叫的時候改為:

>>> import urllib.request   >>> urllib.request.urlopen('http://www.baidu.com') 如 https://www.python.org/dev/peps/pep-3108/#urllib-package ---------------------  作者:felcon  來源:CSDN  原文:https://blog.csdn.net/felcon/article/details/44774483?utm_source=copy  (具體是在python3.3後)

而在python2中 匯入urllib2仍為 

import urllib2

urllib2.openurl('http://www.baidu.com')