First solution in Creative category for Is Even by megaexception
def is_even(num: int) -> bool: return not(num%2)
May 2, 2020