exit python linux code example
Example 1: exit python terminal
Ctrl+d or exit()
Example 2: exit in python
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
Ctrl+d or exit()
import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg