3 lines
85 B
Python
3 lines
85 B
Python
nombre_camions = [15, 22, 25, 30, 45]
|
|
print(sum(nombre_camions)/len(nombre_camions))
|