Basic Even-Test solution in Clear category for Is Even by OrdoFlammae
def is_even(num: int) -> bool: return num % 2 == 0
Oct. 12, 2020