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
如何for
仅使用循环获得确切的输出。我尝试了一些事情,但它根本不会发生。有可能吗?