gpt4 book ai didi

python - 在 Python 中跳过迭代变量的 N 个值的最佳方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 22:14:56 25 4
gpt4 key购买 nike

在许多语言中,我们可以这样做:

for (int i = 0; i < value; i++)
{
if (condition)
{
i += 10;
}
}

如何在 Python 中做同样的事情?以下(当然)不起作用:

for i in xrange(value):
if condition:
i += 10

我可以这样做:

i = 0
while i < value:
if condition:
i += 10
i += 1

但我想知道在 Python 中是否有更优雅的 (pythonic?) 方法。

最佳答案

使用继续

for i in xrange(value):
if condition:
continue

如果你想强制你的迭代向前跳过,你必须调用 .next()

>>> iterable = iter(xrange(100))
>>> for i in iterable:
... if i % 10 == 0:
... [iterable.next() for x in range(10)]
...
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[21, 22, 23, 24, 25, 26, 27, 28, 29, 30]
[41, 42, 43, 44, 45, 46, 47, 48, 49, 50]
[61, 62, 63, 64, 65, 66, 67, 68, 69, 70]
[81, 82, 83, 84, 85, 86, 87, 88, 89, 90]

如你所见,这很恶心。

关于python - 在 Python 中跳过迭代变量的 N 个值的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5509302/

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