How can i stop a thread after 5 seconds? I want to print "Hello World" every seconds and then stop after 5 seconds. This is my code:
import threading
def printthis():
threading.Timer(1.0, printthis).start()
print("Hello, World!")
printthis()