宽屏模式

python3中urllib与python2中urllib的区别与如何使用

python 中将python 2中的urlliburllib合并为一个urllib模块;

python 2.x

urllib
urllib2

python 3.x

urllib

区别:

python 2: import urllibimport urllib2
python 3: import urllib.request,urllib.error,urllib.parse

python 2:urllib2.Request
python 3:urllib.request.Request

python 2:import urllib.quote
python 3:import urllib.request.quote

python 2:import urlparse
python 3:import urllib.parse

python 2:import urlopen
python 3:import urllib.request.urlopen

python 2:import urlencode
python 3:import urllib.parse.urlencode

python 2:cookielib.CookieJar
python 3:http.CookieJar

Larwas
请先登录后发表评论
  • latest comments
  • 总共0条评论