Hmm, I don't think I've asked this before. I want to do an if or select statement where I'm checking if a state is one of maybe ten different states. I'm no expert programmer, but I know in Python, you can do "in", so I'm wondering if there's a way to do something like that. For example

Code:
If state in {"Arkansas", "California", "Maine", "New Jersey", "Wyoming"} then do something
as opposed to the much harder to write and read, especially if you have 10 or 15 states

Code:
If (state = "Arkansas" or state = "California" or state = "Maine" or state = "New Jersey" or state = "Wyoming") then do something
Thanks