Python break 关键字
定义和用法
The break
关键字用于跳出 for
循环或 while
循环。
更多示例
相关页面
使用 continue
关键字结束循环中的当前迭代,但继续下一个迭代。
在我们的 Python for 循环教程 中阅读有关 for 循环的更多信息。
在我们的 Python while 循环教程 中阅读有关 while 循环的更多信息。
The break
关键字用于跳出 for
循环或 while
循环。
使用 continue
关键字结束循环中的当前迭代,但继续下一个迭代。
在我们的 Python for 循环教程 中阅读有关 for 循环的更多信息。
在我们的 Python while 循环教程 中阅读有关 while 循环的更多信息。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]