I'm trying to make a category select (by text interface) in Python 3, and I was wondering how I can compare if multiple strings are not true, and then print something along the lines of "that is not a valid choice"
input("what is your category choice?")
if categoryChoice != "category1", "category 2", "category 3":
print("not a valid choice")
I don't understand the syntax for having it check if any of category1, category2, category3, etc is true/false