#Author: James Tam #Version: October 16, 2024 #Learning objective: how the exit abruptly terminates executeion # aName = input("Enter your name: ") if(aName == "James Tam"): print("Get out!") exit() #~augmented break but leaves whole program instead of enclosing loop. print("Everyone else is allowed to use this program") print("This amount of code amounts to almost the entire program")