Python continue 关键字
定义和用法
The continue
keyword is used to end the current iteration in a for
loop (or a while
loop), and continues to the next iteration.
更多示例
相关页面
使用 break
关键字完全结束循环。
在我们的 Python For Loops 教程 中了解更多关于 for 循环的信息。
在我们的 Python While Loops 教程 中了解更多关于 while 循环的信息。