Modular solution in Clear category for Is Even by scribani.andres
def is_even(num: int) -> bool: return False if num % 2 else True
May 1, 2020