Introduction To Python - Learn Python the hard way v2.0
Title: Exercise_33
#!usr/bin/python
i = 0
numbers = []
while i < 6:
print "At the top i is %d" % i
numbers.append(i)
i = i + 2
print "Numbers now: ", numbers
print "At the bottom i is %d" % i
print "The numbers: "
for num in numbers:
print num
