Führen Sie alle n Sekunden Python eine Funktion aus
import threading
def printit():
threading.Timer(5.0, printit).start()
print "Hello, World!"
printit()
# continue with the rest of your code
Happy Hippopotamus