for循环

目标

  • 掌握 for 循环的语法格式
  • 掌握 for-else 的执行过程

介绍

像while循环一样,for可以完成循环的功能。

在Python中 for循环可以遍历任何序列的项目,如一个列表或者一个字符串等。

for循环的格式


for 临时变量 in 列表或者字符串等:
    循环满足条件时执行的代码

demo1

name = 'dongGe'

for x in name:
    print(x)

运行结果如下:

demo2

name = 'hello'

for x in name:
    print(x)
    if x=='l':
        break #退出for循环
else:
    print("==for循环过程中,如果没有break则执行==")

运行结果如下:

h
e
l

demo3

name = 'hello'

for x in name:
    print(x)
    #if x=='l':
    #    break #退出for循环
else:
    print("==for循环过程中,如果没有break则执行==")

运行结果如下:

h
e
l
l
o
==for循环过程中,如果没有break则执行==