Answers for "fastest way to check odd or even in python"

-1

fastest way to check odd or even in python

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

>>> isodd(10)
False
>>> isodd(9)
True
Posted by: Guest on September-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language