解决脚本兼容urllib和urllib2(python2和python3)

alex python语言评论阅读模式

解决脚本兼容urlliburllib2python2python3

有时候在写叫脚本的时候遇到python23的问题,有时候很头疼

下面是解决python中的urllib使用的方法,提供一个参考

 
 

try:

from urllib.request import urlopen, Request # Python 3

except ImportError:

from urllib2 import urlopen, Request # Python 2

文章末尾固定信息

 
alex
  • 本文由 alex 发表于 2018年4月6日 20:57:00
  • 转载请务必保留本文链接:https://www.qnjslm.com/ITHelp/876.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定