Python Program to sum of even numbers in a list using the function
In this program, You will learn how to sum of even numbers in a list using the function in Python.
data = [2, 3, 4, 5]
Example: How to sum of even numbers in a list using the function in Python
def sumall(values):
s = 0
for value in values:
if value % 2 == 0:
s = s + value
print("Sum of even list:", s)
k = int(input("Enter how many number:"))
data = []
print("Enter numbers:", end=" ")
for i in range(0, k):
num = int(input())
data.append(num)
sumall(data)
Output:
Enter how many number:5
Enter numbers: 2
3
4
5
6
Sum of even list: 12