每日一读:《关于python2和python3中的range》
Posted runpython
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日一读:《关于python2和python3中的range》相关的知识,希望对你有一定的参考价值。
官网原话是这么说的:
In many ways the object returned by range() behaves as if it is a list, but in fact it isn’t. It is an object which returns the successive items of the desired sequence when you iterate over it, but it doesn’t really make the list, thus saving space.
We say such an object is iterable, that is, suitable as a target for functions and constructs that expect something from which they can obtain successive items until the supply is exhausted. We have seen that the for statement is such an iterator. The function list() is another; it creates lists from iterables:
翻译:
可以看到上面这个很奇怪, 在很多种情况下, range()函数返回的对象的行为都很像一个列表, 但是它确实不是一个列表,它只是在迭代的情况下返回指定索引的值, 但是它并不会在内存中真正产生一个列表对象, 这样也是为了节约内存空间。
我们称这种对象是可迭代的,或者是可迭代对象,还有一种对象叫迭代器, 它们需要从一个可迭代对象中连续获取指定索引的值, 一直到索引结束。list()函数就是这样一个迭代器,它可以把range()函数返回的对象变成一个列表。
总结:
range() 函数返回的是一个可迭代对象(类型是对象),而不是列表类型, 所以打印的时候不会打印列表。
list() 函数是对象迭代器,把对象转为一个列表。返回的变量类型为列表。
如:for i in range(1,5)在python2和python3中都可以使用,但是要生成1-5的列表, python3中就需要用list(range(1,5))。如下面的代码:
i=range(1,5)
print i
我们在python2.7中运行一切正常,和我们想要的结果是一致的。 返回的是一个列表:
[1, 2, 3, 4]
我们type(i)返回的是list,也是正确的。
但如果我们要在python3中,如果这样做呢?会和我们想要的结果一样吗?
我们把以上代码复制并在python3中运行。发现返回的是
range(1, 5)
而不是我们想要的结果:[1,2,3,5] 。这也就证明了在python3中,range返回的是一个迭代值。
而我们想要返回一个列表,我们就要这样做:
i=list(range(1,5))
print(i)
在range前面加多一个list函数。
以上是关于每日一读:《关于python2和python3中的range》的主要内容,如果未能解决你的问题,请参考以下文章