countDownTimer是一個用于倒計時的函數,它有兩個參數:duration和callback。
duration:表示倒計時的時間長度,單位為毫秒。
callback:表示倒計時結束后要執行的回調函數。
使用countDownTimer函數的示例代碼如下:
from datetime import datetime
import time
def countdown_finished():
print("倒計時結束")
def count_down_timer(duration, callback):
start_time = datetime.now()
end_time = start_time + duration
while datetime.now() < end_time:
remaining_time = end_time - datetime.now()
print("剩余時間:", remaining_time.total_seconds(), "秒")
time.sleep(1)
callback()
# 使用countDownTimer函數進行倒計時
count_down_timer(duration=timedelta(seconds=10), callback=countdown_finished)
上述代碼中,countdown_finished函數是倒計時結束后要執行的回調函數,我們可以根據實際需求來編寫回調函數的邏輯。count_down_timer函數中,通過計算當前時間和結束時間的差值來實現倒計時的功能,每隔1秒打印剩余時間。當時間達到結束時間時,調用回調函數。