Python 关键字
如果变量 i 为 5,则跳过迭代,但继续进行下一个迭代:
for i in range(9): if i == 5: continue print(i)
运行实例
continue 关键字用于在 for 循环(或 while 循环)中结束当前迭代,然后继续下一个迭代。
在 while 循环中使用 continue 关键字:
i = 0 while i < 9: i += 1 if i == 5: continue print(i)
使用 break 关键字 彻底结束循环。
请在我们的 Python For 循环教程 中学习更多有关循环的知识。
请在我们的 Python While 循环教程 中学习更多有关循环的知识。