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

What#39;s the best way of skip N values of the iteration variable in Python?(在 Python 中跳过迭代变量的 N 个值的最佳方法是什么?)
本文介绍了在 Python 中跳过迭代变量的 N 个值的最佳方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

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

In many languages we can do something like:

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

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

How can I do the same in Python? The following (of course) does not work:

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

我可以这样做:

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

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

but I'm wondering if there is a more elegant (pythonic?) way of doing this in Python.

推荐答案

使用继续.

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

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

If you want to force your iterable to skip forwards, you must call .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 中跳过迭代变量的 N 个值的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python arbitrarily incrementing an iterator inside a loop(python在循环内任意递增迭代器)
Joining a set of ordered-integer yielding Python iterators(加入一组产生 Python 迭代器的有序整数)
Iterating over dictionary items(), values(), keys() in Python 3(在 Python 3 中迭代字典 items()、values()、keys())
What is the Perl version of a Python iterator?(Python 迭代器的 Perl 版本是什么?)
How to create a generator/iterator with the Python C API?(如何使用 Python C API 创建生成器/迭代器?)
Python generator behaviour(Python 生成器行为)