how to terminate python program code example
Example 1: how to stop the program in python
import sys
sys.exit()
Example 2: python kill script
import sys
sys.exit()
Example 3: stop procedure python
def some_fuction():
print("This is all I do!")
return
# A simple return will end a function