您将如何制作一个循环,一直循环计数直到说60。又如何显示它,然后更新同一行上的数字?
答案 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