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

Python 常用术语

1、for 循环语句中的else

for循环中的else关键字指定了循环结束时要执行的代码块:

例如:

打印输出从0到5的所有数字,并在循环结束时打印输出提示信息:

for x in range(6):
    print(x)
else:
    print("Finally finished!")

相关文档:

Python for循环教程

Python for循环

Python for循环遍历字符串

Python for break语句

Python for continue语句

Python for循环使用range()函数

Python for 循环中的else

Python for循环嵌套

Python for循环中的pass

Python 常用术语

推荐文档