For example if I want to write a statement that would return True if 5 equals either one of the integers 1, 3, or 5. How would I write that, except the more direct method of:
if 5 == 1 or 5== 3 or 5== 5:
return True
I'm asking since the specific expression I want to use this on is rather long.