循环中else的用法

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



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

  

posted @ 2018-05-08 17:43  汪凡  阅读(702)  评论(0编辑  收藏  举报