Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。本文主要介绍Python for continue语句。

Python 常用术语

1、continue语句

使用continue语句,我们可以停止循环的当前迭代,然后继续下一个:

例如:

不打印输出 “python”:

langs = ["c", "java", "python","cjavapy"]
for x in langs:
    if x == "python":
        continue
    print(x)

相关文档:

Python for循环教程

Python for循环

Python for循环遍历字符串

Python for break语句

Python for continue语句

Python for循环使用range()函数

Python for 循环中的else

Python for循环嵌套

Python for循环中的pass

Python 常用术语

推荐文档