File: LP6E/Chapter36/exiter.py

import sys

def bye():
    sys.exit(62)           # Crucial error: abort now!

try:
    bye()
except:
    print('Got it')        # Oops--we ignored the exit

print('Continuing...')



[Home page] Books Code Blog Python Author Train Find ©M.Lutz