Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
from threading import Timer def f(): print("f()") t = Timer(1, f) t.start() ''' run: f() '''