import time
while True:
uin = input(">> ")
try:
when_to_stop = abs(int(uin))
except KeyboardInterrupt:
break
except:
print("Not a number")
while when_to_stop > 0:
m, s = divmod(when_to_stop, 60)
h, m = divmod(m, 60)
time_left = str(h).zfill(2) + ":" + str(m).zfill(2) + ":" + str(s).zfill(2)
print(time_left + "\r", end='')
time.sleep(1)
when_to_stop -= 1
print()
我知道回车在python空闲时不起作用所以我想知道是否有另一种方法可以做同样的事情和运载功能但是在python空闲时工作 谢谢你的帮助
使用python 3.6如果你需要知道