# Start an infinite loop because True will always be TruewhileTrue:
# try to run the main function, usually where everything happenstry:
main()
# in the case an exception is raised in the main function simply discard (pass) and restart the loopexcept:
pass
There you go:
# Start an infinite loop because True will always be True while True: # try to run the main function, usually where everything happens try: main() # in the case an exception is raised in the main function simply discard (pass) and restart the loop except: pass
Thank you for that answer! That makes sense.