首页 > 其他 > 详细

EX33

时间:2017-02-09 23:44:04      阅读:255      评论:0      收藏:0      [点我收藏+]
 1 i = 0
 2 numbers = []
 3 
 4 while i < 6:
 5     print "At the top i is %d" % i
 6     numbers.append(i)
 7 
 8     i = i + 1
 9     print "Numbers now: ", numbers
10     print "At the bottom i is %d" % i
11     
12     
13 print "The numbers:"
14 
15 for num in numbers:
16     print num

技术分享

while循环跟if类似,但区别在于重复进行,直到while表达式为False为止。

例如:i < 6,那么的6的时候就变成false,这时候就停止打印

 

EX33

原文:http://www.cnblogs.com/LevenLau/p/6380153.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!