9 lines
149 B
Python
9 lines
149 B
Python
nbNotes = int(input())
|
|
sommeNotes = 0
|
|
|
|
for loop in range(nbNotes):
|
|
note = int(input())
|
|
sommeNotes = sommeNotes + note
|
|
|
|
print(sommeNotes / nbNotes)
|