+ 5
How to calculate the average of the elements of a list with the function reduce() ...
How to calculate the average of the elements of a list "with the function reduce()", without having to divide in the end the sum with the number of elements A = [2, 4, 5, 1, 10, 5, 2, 5, 7] prom = reduce(lambda x , y : x + y, A) / len(A) print (prom)
2 Antworten
0
@Maria Isabel, el código si usa una función.. es una función anónima que de realiza con la palabra clave lambda..
Lambda x , y : x + y .. es la función.
- 1
Le falta definir la función.