Python2升级Python3(1):xrange

Python2升级到Python3的时候,我们会注意到xrange报错


这时建议将xrange换成range

Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:53:40) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> type(range(6))
<type 'list'>

python2中,range的返回值是list,这意味着内存将会分布相应的长度的空间给list。


Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:57:15) [MSC v.1915 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> type(range(6))
<class 'range'>

python3中返回值是一个对象,并没有将数据完全实例化,所以内存中只有一个对象的空间,对性能优化还是很有帮助的。

当然了你也可以在python3写一个xrange

def xrange(x):
    n=0
    while n<x:
        yield n
        n+=1


参考:https://blog.csdn.net/mvs2008/article/details/73693012 

    原文作者:时间:2019-01-29 14:57:53
    原文地址: http://blog.itpub.net/31490526/viewspace-2565083/
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞