码迷,mamicode.com
首页 > 其他好文 > 详细

while/else

时间:2017-11-07 22:10:51      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:oop   mil   not   time   loop   div   false   any   its   

LOOPS

While / else

Something completely different about Python is the while/else construction. while/else is similar to if/else, but there is a difference: the else block will execute anytime the loop condition is evaluated to False. This means that it will execute if the loop is never entered or if the loop exits normally. If the loop exits as the result of a break, the else will not be executed.

In this example, the loop will break if a 5 is generated, and the else will not execute. Otherwise, after 3 numbers are generated, the loop condition will become false and the else will execute.

while/else

标签:oop   mil   not   time   loop   div   false   any   its   

原文地址:http://www.cnblogs.com/asusual/p/7800921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!