how to quit python program code example
Example 1: how to stop the program in python
import sys
sys.exit()
Example 2: how to code python to close a program
import sys
sys.exit(0)
Example 3: exit in python
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
Example 4: how to exit program in python
import sys sys.exit() //This will exit the python program