I'm not sure how to explain it so here's an example:
array = ["x","x","x"]
if array == ["x","2","3"] or ["1","x","3"] or ["1","2","x"]:
print ("hello")
Basically, how could I get this to only print hello if it is equal to one of those lists?