New Activity
Play Fill in the Blanks Game
i = ____________________
numbers = [ ]

while i < 6 :
____________________ " At the top i is %d " % i
numbers . append ( i )

i = ____________________ + 1
print " Numbers now : " , numbers
print " At the bottom i is %d " % i


____________________ " The numbers : "

for num ____________________ numbers :
print nu m