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

2021-05-12 14:27

阅读:593

标签:pytho   except   ext   exce   print   int   range   exception   cep   

使用next函数

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

  try:

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

  except Exception as e:

    pass

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

标签:pytho   except   ext   exce   print   int   range   exception   cep   

原文地址:https://www.cnblogs.com/yjybupt/p/13140016.html


评论


亲,登录后才可以留言!