Answer to Question #232602 in Python for Assignment

Question #232602
Write a Python code of a program that asks the user to enter ten numbers then display
the total and the average of ONLY the even numbers among those ten numbers.
1
Expert's answer
2021-09-06T01:59:20-0400
from functools import reduce
N = list(map(int,input().split()))


def fun(x):
    if x % 2 == 0:
        return x;
even_numbers = list(filter(fun,N))
sum_num = reduce(lambda x,y:x+y,even_numbers)
print(sum_num,sum_num/len(even_numbers))

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS