Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
from threading import Timer
import time
class RepeatTimer(Timer):
def run(self):
while not self.finished.wait(self.interval):
self.function(*self.args, **self.kwargs)
def your_func(msg="do something"):
print(msg)
timer = RepeatTimer(1, your_func)
timer.start()
time.sleep(10)
timer.cancel()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question