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