I wish
I wish
I wish
You're viewing a single thread.
This is your brain on python:
def is_even (num): return num in [x*2 for x in range(sys.maxsize / 2)]
That won't work tho, you need to make it sys.maxsize//2 to coerce the output into int form
range()
accepts floats, does it not?
IIRC it doesn't; that has caused me pain so many times when trying to generate fractional range