你所不知道的python 循环中的else

众多语言中都有if else这对条件选择组合,但是在python中还有更多else使用的地方,比如说循环for,或者while都可以和else组合。

下面简单介绍一下for-else while-else组合

循环组合中的else执行的情况下是循环正常结束(即不是使用break退出)。如下列代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

numbers= [1,2,3,4,5]

for nin numbers:

    if (n >5):

        print('the value is %d '%(n))

        break

else:

    print('the for loop does not end with break')

     

i= 0

while(numbers[i] <5):

    print('the index %d value is %d'%(i, numbers[i]))

    if (numbers[i] <0) :

        break

    i= i+ 1

else:

    print('the loop does not end with break')

   

numbers= [1,2,3,4,5]

for nin numbers:

    if (n >5):

        print('the value is %d '%(n))

        break

else:

    print('the for loop does not end with break')

    

i= 0

while(numbers[i] <5):

    print('the index %d value is %d'%(i, numbers[i]))

    if (numbers[i] <0) :

        break

    i= i+ 1

else:

    print('the loop does not end with break')

执行结果如下:

1

2

3

4

5

6

7

C:\Python27>python.exe for_else.py

thefor loop doesnot end withbreak

the index0 valueis 1

the index1 valueis 2

the index2 valueis 3

the index3 valueis 4

the loop doesnot end withbreak

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

「已注销」

LHStudio感谢您的支持

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值