I'm trying to find an easier way to find one part of a group of strings. Here's what I mean by that:
word = ["Word", "Palabra"]
If word == "Word":
print word
So I need a way to detect if one of the strings equals "Word" without just looking for word[0] or word[1]