Introduction To Python - Learn Python the hard way v2.0
Title: Exercise33
i = 0
no = []

while i < 6:
	print "i = %d" %i
	no.append(i)

	i = i + 1

print "The nos: "
for i in no:
	print i