python threading.Timer()
时间: 2023-07-25 11:33:08 浏览: 85
ThreadingTimer
`python threading.Timer()` 是一个 Python 线程库中的函数,用于创建一个定时器对象,该对象在指定的时间间隔后触发一个函数。例如,以下代码将创建一个定时器对象,该对象在 5 秒后触发 `my_function` 函数:
```
import threading
def my_function():
print("Hello, world!")
timer = threading.Timer(5.0, my_function)
timer.start()
```
在上述代码中,`Timer` 函数的第一个参数是时间间隔(以秒为单位),第二个参数是要触发的函数。 `timer.start()` 函数将启动定时器对象,并在 5 秒后触发 `my_function` 函数。
阅读全文