while else

2019-04-12 09:33:36来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

1 count = 0
2 while count <= 5 :
3     count += 1
4     if count == 3:pass
5     print("Loop",count)
6 
7 else:
8     print("循环执行完啦")
9 print("-----out of while loop ------")

结果:

Loop 1
Loop 2
Loop 3
Loop 4
Loop 5
Loop 6
循环执行完啦
-----out of while loop ------

1 count = 0
2 while count <= 5 :
3     count += 1
4     if count == 3:break
5     print("Loop",count)
6 
7 else:
8     print("循环执行完啦")
9 print("-----out of while loop ------")

 

Loop 1
Loop 2
-----out of while loop ------

结论:while循环正常执行完不会执行else里边的代码,如果while循环被break中断则会执行else里边的代码


原文链接:https://www.cnblogs.com/waitstory/p/10692410.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python抓取天气信息并存储原来这么简单

下一篇:Python3 小技巧