how to exit code without system.exit python code example
Example: exit in python
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg