cara tercepat untuk memeriksa ganjil atau bahkan dalam python

>>> def isodd(num):
        return num & 1 and True or False

>>> isodd(10)
False
>>> isodd(9)
True
Xanthous Xenomorph