0

次のコードがあります。

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)

インポートsleepすると速度が低下しますが、一時停止して必要なときに続行するにはどうすればよいですか?

4

1 に答える 1

1

input()一時停止したい場所を追加するだけです。

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)
    input() # add it here for example.


print("The numbers: ")

for num in numbers:
    print(num)
于 2015-10-18T03:29:53.807 に答える