我想运行两个函数。第一个函数通常一直运行,但每10分钟运行一次第二个函数。所以我计划定义一个定时器全局变量。但我不知道这是否可能。如果可能,请以正确的方式指导我。如果不可能,请给出其他解决方案以下是我到目前为止所做的
def func1():
"""something goes here"""
def func2():
"""something goes here"""
timer = """count down of 10 minutes"""
if timer<"""10 minutes""":
func1()
else:
func2()
我建议时间。睡眠
import time
func2()
time.sleep(600)
时间库对很多事情都很有用:(
--Dylan
您可以使用sleep((
import time
func2()
time.sleep(600)
func1()