Qvint01 Asked:2020-08-30 00:24:21 +0800 CST2020-08-30 00:24:21 +0800 CST 2020-08-30 00:24:21 +0800 CST 如何在python中做setTimeout? 772 我需要提出一个请求/请求。假设我激活了一个函数,如果 30 秒后如果没有被确认,则调用另一个函数,如果它被确认,则调用第三个函数 js 有 setTimeout() 和 clearTimeout() 所以我想在 python 中做类似的事情(异步) python 2 个回答 Voted Best Answer Serg Bocharov 2020-08-30T00:45:47+08:002020-08-30T00:45:47+08:00 在 Python 中模拟这些Timer函数 def func(): print "hello, world" t = Timer(30.0, func) if something: t.start() # после 30 секунд, "hello, world" будет выведено else: t.cancel() # иначе отменить USERNAME GOES HERE 2020-08-30T00:26:47+08:002020-08-30T00:26:47+08:00 import time time.sleep(howManyToWaitInSeconds)
在 Python 中模拟这些Timer函数