def is_even_num(l): enum = [] for n in l: if n % == : enum.append(n) return enum print(is_even_num([, , , , , , , , ]))