stopping a program python code example
Example 1: python sys halt
import sys
#put your code here
sys.exit
Example 2: how to stop running code in python
#to stop all execution of code
exit()
import sys
#put your code here
sys.exit
#to stop all execution of code
exit()