programming-examples/python/Function/Python program to print the even numbers from a given list.py

7 lines
181 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
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]))