looping

Score: 0 / 1.0

Write a Python function sum_even_numbers that takes a list of integers as an input and returns the sum of all the even numbers in the list. You should use a loop to iterate through the list to find and sum the even numbers.

Write a Python function sum_even_numbers that takes a list of integers as an input and returns the sum of all the even numbers in the list. You should use a loop to iterate through the list to find and sum the even numbers.


Exercises