正如標題所說,我想在Python中創建一個實時倒計時實時倒數計時器在Python
到目前爲止,我已經試過這
import time
def countdown(t):
print('Countdown : {}s'.format(t))
time.sleep(t)
但這讓應用睡眠在「T」秒,但秒鐘行不更新自己
countdown(10)
所需的輸出:
Duration : 10s
1秒後,它應該是
Duration : 9s
呀,問題是前一行Duration : 10s
我不得不抹去。有沒有辦法做到這一點?