Review Example
def intro():
print("You are in a cave.")
choice = input("Go left or right? ")
return choice
def left_path():
print("You find treasure!")
def right_path():
print("A monster appears!")
choice = intro()
if choice == "left":
left_path()
elif choice == "right":
right_path()
else:
print("You freeze in fear...")