Contact: aviboots(AT)netvision.net.il
39,890 questions
51,819 answers
573 users
import threading import time def func(): print("func()") seconds = 2 t = threading.Timer(seconds, func) t.start() ''' run: func() '''