#Escape room program print("Escape Room") print() #Get the player's name print("What is your name adventurer?") player = input("> ") print("Hello " + player + ". Welcome to the Escape Room.") print() #Print the description print("It's dark") print() # Add more of a description here using more print lines # Try and make it a really good description # What does the room smell like? # What can the player hear? #First action print("What do you want to do?") action = input("> ")