我希望我的代码(Python)每半小时执行一次。我正在使用Windows。例如,我希望它能在11,11:30,12,12:30等运行。
由于
答案 0 :(得分:1)
这应该调用该函数一次,然后等待1800秒(半小时),调用函数,等待等等。
from time import sleep
from threading import Thread
def func():
your actual code code here
if __name__ == '__main__':
Thread(target = func).start()
while True:
sleep(1800)
Thread(target = func).start()
答案 1 :(得分:1)
您也可以在命令提示符中使用AT命令,该命令与linux中的cron类似。