It seems that python supports many different commands to stop script execution.
The choices I\'ve found are: quit(), exit(), sys.exit()>
os._exit():
exit(0):
exit(1):
sys.exit():
quit():
Basically they all do the same thing, however, it also depends on what you are doing it for.
I don't think you left anything out and I would recommend getting used to quit() or exit().
You would use sys.exit() and os._exit() mainly if you are using big files or are using python to control terminal.
Otherwise mainly use exit() or quit().