python2与python3区别汇总

Remove dict.iteritems(), dict.iterkeys(), and dict.itervalues().
Instead: use dict.items(), dict.keys(), and dict.values() respectively.


python 3.x中urllib库和urilib2库合并成了urllib库
其中urllib2.urlopen()变成了urllib.request.urlopen()
urllib2.Request()变成了urllib.request.Request()

需要import urllib.request 而不是只引用import urllib,否则会出现A ttributeError: ‘module’ object has no attribute ‘reques


在python2里面,u表示unicode string,类型是unicode, 没有u表示byte string,类型是 str。
在python3里面,所有字符串都是unicode string, u前缀没有特殊含义了。
r都表示raw string. 与特殊字符的escape规则有关,一般用在正则表达式里面。
r和u可以搭配使用,例如ur”abc”。

上一篇:【Elastic Engineering】Elasticsearch:通过 shrink API 减少 shard 数量来缩小 Elasticsearch 索引


下一篇:从工具到生态,百度App是如何构建搜索护城河的?