I need to realize a complex if-elif-else statement in Python but I don\'t get it working.
The elif line I need has to check a variable for this conditions:
I think the most pythonic way to do this for me, will be
elif var in [80,443] + range(1024,65535):
although it could take a little time and memory (it's generating numbers from 1024 to 65535). If there's a problem with that, I'll do:
elif 1024 <= var <= 65535 or var in [80,443]: