how to exit python console code example
Example 1: exit python terminal
Ctrl+d or exit()
Example 2: how to exit program in python
import sys sys.exit() //This will exit the python program
Ctrl+d or exit()
import sys sys.exit() //This will exit the python program