執行定期操作
定期執行特定函數是程式設計中的常見任務。在 Windows 中,有多種方法可以實現此目的,其中之一涉及利用 Timer 類別。
要每10 秒執行一個函數,例如foo(),可以實作以下方法:
import time, threading def foo(): print(time.ctime()) # Create a Timer to call foo() again after 10 seconds threading.Timer(10, foo).start() foo()
以上是如何在 Windows 中使用 Timer 類別定期執行函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!