keyWord = ["urgent", "Linux", ...]
val = input("Enter the text for the ticket: ").casefold()
if "urgent".casefold() in val:
print("Keyword: " + keyWord[0])
print("Route to: Pry Ority")
elif "Linux".casefold() in val:
print("Keyword: " + keyWord[1])
print("Route to: Pebble Penguin")
elif...
If the user is prompted and they type "urgent linux" I would like it to return the first keyword of the string urgent and route to Pry Ority.