标签: python scheduled-tasks
我有一个函数f()我想不时运行,比方说每10秒钟。我的目标是无限期地运行它,只被中断杀死。我查看了sched模块,但无法找到如何无限次地重复运行该函数。也许是while True循环?
f()
sched
while True
答案 0 :(得分:1)
import time while True: f() time.sleep(10)
试试吧!