Contact: aviboots(AT)netvision.net.il
42,690 questions
55,449 answers
573 users
import threading import time def func(): print("func()") seconds = 2 t = threading.Timer(seconds, func) t.start() ''' run: func() '''