您现在所在的位置:首页 >学习资源 > Python全栈+人工智能入门教材 > Python基础入门教程39:Python continue 语句

Python基础入门教程39:Python continue 语句

来源:奇酷教育 发表于:

Python开发 Python教程 Python基础

Python continue 语句

  Python continue 语句跳出本次循环,而break跳出整个循环。

  continue 语句用来告诉Python跳过当前循环的剩余语句,然后继续进行下一轮循环。

  continue语句用在while和for循环中。

  Python 语言 continue 语句语法格式如下:

  流程图:

  实例: