Python ulangi setiap n detik
#executes printit() every 5s
import threading
def printit():
threading.Timer(5.0, printit).start()
print "Hello, World!"
printit()
pilotpimpf