I am aware of the die() command in PHP which stops a script early, how can I do this in Python?
|
|
|||||
|
|
|
details from the sys module documentation:
Note that this is the 'nice' way to exit. @glyphtwistedmatrix below points out that if you want a 'hard exit', you can use os.exit(errorcode*), though it's likely os-specific to some extent (it might not take an errorcode under windows, for example), and it definitely is less friendly since it doesn't let the interpreter do any cleanup before the process dies. |
|||
|
|
|
|
another way is
|
||
|
|
|
|
from sys import exit exit() As a parameter you can pass an exit code, which will be returned to OS. Default is 0. |
||
|
|
|
|
While you should generally prefer If you are sure that you need to exit a process immediately, and you might be inside of some exception handler which would catch |
||
|
|
