not bool(num % 2) solution in Clear category for Is Even by tokyoamado
def is_even(num: int) -> bool: return not bool(num % 2)
May 1, 2020
Comments: