Trouvez la moyenne avec Sum et Len dans Python
# Python code to demonstrate the practical application
# of sum()
numbers = [1,2,3,4,5,1,4,5]
# start = 10
Sum = sum(numbers)
average= Sum/len(numbers)
print (average)
# Output -
# 3
Rajitha Amarasinghe