Q:

Write a Python program to print the even numbers from a given list

0

Write a Python program to print the even numbers from a given list

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

def is_even_num(l):
    enum = []
    for n in l:
        if n % 2 == 0:
            enum.append(n)
    return enum
print(is_even_num([1, 2, 3, 4, 5, 6, 7, 8, 9]))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now