Only index needed: enumerate or (x)range?(只需要索引:枚举还是(x)范围?)
问题描述
如果我只想在循环中使用索引,我应该更好地使用 range/xrange
函数和 len()
If I want to use only the index within a loop, should I better use the range/xrange
function in combination with len()
a = [1,2,3]
for i in xrange(len(a)):
print i
或枚举
?即使我根本不会使用 p
?
or enumerate
? Even if I won't use p
at all?
for i,p in enumerate(a):
print i
推荐答案
我会使用 enumerate
,因为它更通用 - 例如,它适用于可迭代对象和序列,以及仅返回引用的开销到一个对象并不是什么大不了的事 - 虽然 xrange(len(something))
虽然(对我来说)更容易阅读你的意图 - 会破坏不支持 len 的对象
...
I would use enumerate
as it's more generic - eg it will work on iterables and sequences, and the overhead for just returning a reference to an object isn't that big a deal - while xrange(len(something))
although (to me) more easily readable as your intent - will break on objects with no support for len
...
这篇关于只需要索引:枚举还是(x)范围?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:只需要索引:枚举还是(x)范围?


基础教程推荐
- matplotlib 设置 yaxis 标签大小 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01