有什么像python中的回车,在空闲的python中为倒数计时器工作

时间:2018-04-15 02:45:09

标签: python-3.x

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如果你需要知道

0 个答案:

没有答案