python3.x 和 python2.x关于 urllib的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.x 和 python2.x关于 urllib的用法相关的知识,希望对你有一定的参考价值。
在python2.x版本中可以直接使用import urllib来进行操作,但是python3.x版本中使用的是import urllib.request来进行操作,下面是简单的例子:
python2.x
import urllib url = ‘http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345‘ text = urllib.urlopen(url).read()
python3.x
import urllib.request url = ‘http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=‘ current = ‘12345‘ response = urllib.request.urlopen(url+current) text = response.read() current = text[-5:] response = urllib.request.urlopen(url+current)
以上是关于python3.x 和 python2.x关于 urllib的用法的主要内容,如果未能解决你的问题,请参考以下文章