如何使用Python以固定延迟重复运行函数?

时间:2017-03-28 19:04:40

标签: python scheduled-tasks

我有一个函数f()我想不时运行,比方说每10秒钟。我的目标是无限期地运行它,只被中断杀死。我查看了sched模块,但无法找到如何无限次地重复运行该函数。也许是while True循环?

1 个答案:

答案 0 :(得分:1)

import time

while True:
    f()
    time.sleep(10)

试试吧!