1. 程式人生 > >用Python print 動態時間

用Python print 動態時間

def t_clock():
    import time
    while True:
        s = time.asctime()
        print(s[11:19],end="")
        time.sleep(1)
        print("\r",end="",flush = True)
t_clock()