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
ループのみを使用して正確な出力を取得するにはどうすればよいですか。私はいくつかのことを試しましたが、それは単に起こりません。それはまったく可能ですか?