maneira mais rápida de verificar estranho ou mesmo em python

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

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