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

Exercise 33: While Loops

时间:2014-10-25 11:48:19      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   sp   div   log   bs   as   

while用起来不如for安全。

i = 0
numbers = []
while i < 6:
  print "At the top i is %d" % i
  numbers.append(i)
  i = i + 1
  print "Numbers now: ", numbers print "At the bottom i is %d" % i
  print "The numbers: "
for num in numbers:
  print num

 

Exercise 33: While Loops

标签:style   blog   color   for   sp   div   log   bs   as   

原文地址:http://www.cnblogs.com/hluo/p/4049850.html

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