获取键盘输入时更新Python控制台GUI

时间:2016-08-09 15:36:34

标签: python python-2.7 date input

我想知道是否有可能拥有一个命令行界面,它实质上每秒闪烁当前系统时间但允许用户通过raw_input继续输入数据?

谢谢,

赖安

1 个答案:

答案 0 :(得分:2)

不管怎么说它不在同一时间。这是在终端显示时间的示例。

import time
while True:
    #time.sleep(1) #Uncommet to have it only print the time every second
    x = time.strftime("%H:%M:%S")
    print x