我想知道是否有可能拥有一个命令行界面,它实质上每秒闪烁当前系统时间但允许用户通过raw_input继续输入数据?
谢谢,
赖安
答案 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