Python:如何制作一个无限循环,将不断递增计数直到达到一定数量

时间:2018-12-21 14:59:17

标签: python-3.x

您将如何制作一个循环,一直循环计数直到说60。又如何显示它,然后更新同一行上的数字?

1 个答案:

答案 0 :(得分:0)

要在适当位置更新输出,您只需要set the end keyword to a carriage return,就可以将vursdour返回到开始并覆盖现有字符串。

我制作了一个快速的示例脚本(带有一个定时限,以便可以看到倒计时

import time
count = 0
while True:
    print(count, end='\r')
    time.sleep(0.2)
    if count == 60:
        break
    else:
        count += 1