Multiple conditions with if/elif statements

I’m trying to get an if statement to trigger from more than one condition without rewriting the statement multiple times with different triggers. e.g.: if user_input == "look": print description if user_input == "look around": print description How would you condense those into one statement? I’ve tried using ‘or’ and it caused any raw_input at … Read more