I wanna know if there is a way to check for two objects without using the -or- operator, or using it but without the declaration. Here's the example
if x == y or x == z:
Instead of that, I would like to do something like
if x == y or z:
Is there any way to do that? Maybe using an array? Thanks for the help