执行定期操作
定期执行特定函数是编程中的常见任务。在 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中文网其他相关文章!