print("\033c") print("Welcome to the Oscar's Crazy Game!") print("As an avid traveler, you have decided to visit the Catacombs of Paris.") print("However, during your exploration, you find yourself lost.") print("You can choose to walk in multiple directions to find a way out.") print("Let's start with your name: ") name = input() print("Good luck, " + name + ".") def ready_to_start(): answer1 = input("Are you ready to start? y/n ").lower() if answer1 == "y": print("Good choice! Allow me to set the scene...") # ... (Place code to continue the game here) elif answer1 == "n": print("You're making a mistake! Let's rethink your decision...") ready_to_start() # Redirect back if they answer 'n' ready_to_start() print("in a land far, far away.")