gpt4 book ai didi

python - 如何循环遍历列表?

转载 作者:IT老高 更新时间:2023-10-28 12:12:49 24 4
gpt4 key购买 nike

我想遍历一个 Python 列表并一次处理 2 个列表项。类似这样的另一种语言:

for(int i = 0; i < list.length(); i+=2)
{
// do something with list[i] and list[i + 1]
}

最好的方法是什么?

最佳答案

您可以使用步长为 2 的 range:

Python 2

for i in xrange(0,10,2):
print(i)

Python 3

for i in range(0,10,2):
print(i)

注意:在 Python 2 中使用 xrange 而不是 range 因为它更高效,因为它生成一个可迭代对象,而不是整个对象列表。

关于python - 如何循环遍历列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2990121/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com