python3 for循环中的else说明

环境:

操作系统:window7 x64 
Python版本:3.7.3

for else

简述

英文原文

A break statement executed in the first suite terminates the loop without executing the else clause’s suite. A continue statement executed in the first suite skips the rest of the suite and continues with the next item, or with the else clause if there is no next item.

中文译文 

用 break 关键字终止当前循环就不会执行当前的 else 语句,而使用 continue 关键字快速进入下一论循环,或者没有使用其他关键字,循环的正常结束后,就会触发 else 语句。

触发 else

正常结束的循环

list = [1,2,3,4,5]
for x in list:
    print(x)
else:
    print("else")

使用 continue 关键字

list = [1,2,3,4,5]
for x in list:
    continue
    print(x)
else:
    print("else")

不触发 else

list = [1,2,3,4,5]
for x in list:
    print(x)
    break
else:
    print("else")

总结:

如果我依次做完了所有的事情(for正常结束,有continue也没问题),我就去做其他事(执行else),若做到一半就停下来不做了(中途遇到break),我就不去做其他事了(不执行else)。

只有循环完所有次数,才会执行 else 。

break 可以阻止 else 语句块的执行。

  • 5
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值