We're a place where coders share, stay up-to-date and grow their careers.
We can get even more clever:
def is_odd_or_even(n): return "odd" if n&1 else "even"
The bitwise-and operator & behavior is trivia, but it's useful because the bitwise operators tend to be consistent across many programming languages.
&
We can get even more clever:
The bitwise-and operator
&
behavior is trivia, but it's useful because the bitwise operators tend to be consistent across many programming languages.