Mathe KA durchschnitt berechnen?

3 Antworten

3,46

(80% von 3,7 = 2,96 + 20% von 2,5 = 0,5);

2,96 + 0,5 = 3,46

schriftliche Note mal 0,8 + mündliche note mal 0,2
3,70,8 + 2,50,2

Bitte selbst ausrechnen.

noten = [3.7, 2.5]
anteile = [0.8, 0.2]

print(sum([anteil * note for anteil, note in zip(noten, anteile)]))

Ergibt 3.46