Bootstrap FreeKB - Python (Scripting) - Stop Halt or Exit
Python (Scripting) - Stop Halt or Exit

Updated:   |  Python (Scripting) articles

sys.exit() can be used to stop, halt, exit the execution of a Python script. In this example, Hello will be printed, the script will be exited, meaning World will not be printed.

#!/usr/bin/python
import sys
print("Hello")
sys.exit()
print("World")

 

You can also declare the exit code, such as 0 (OK) or 1 (Fault).

#!/usr/bin/python
import sys
print("Hello")
sys.exit(0)
print("World")

 




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter e25e49 in the box below so that we can be sure you are a human.