python 如果跳过指定数目的循环

Posted yjy888

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 如果跳过指定数目的循环相关的知识,希望对你有一定的参考价值。

使用next函数

it = iter(range(10))
for i in it:

  try:

    
    next(it)
    next(it)
    print(i)

  except Exception as e:

    pass

以上是关于python 如果跳过指定数目的循环的主要内容,如果未能解决你的问题,请参考以下文章

Python:如果条件为真,则跳过 For 循环中的迭代

python跳过for循环

水仙花数python代码for循环

跳过指定函数参数

Python 在 print() 之后跳过 for 循环

如何在python里面for循环中放了一个定时函数,当定时函数运行时跳过本次循环,执行那个循环