小编典典

Python时间延迟

python

我想知道一段时间后如何调用函数。我已经尝试过time.sleep(),但是这会暂停整个脚本。我希望脚本继续进行,但是???
secs之后调用一个函数并同时运行其他脚本


阅读 198

收藏
2020-12-20

共1个答案

小编典典

看一看threading.Timer。它在新线程中运行您的函数。

from threading import Timer

def hello():
    print "hello, world"

t = Timer(30.0, hello)
t.start() # after 30 seconds, "hello, world" will be printed
2020-12-20