I'm currently using quit() to end my program but the command line still persists after the execution has finished. How do I "kill" the program?
def ed():
quit()
timer = threading.Timer(time, ed)
timer.start()

The pointer stays active and acts like the script is running.
SIGINTto process usingCtrl + C