mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 15:07:31 +02:00
5 lines
125 B
Python
5 lines
125 B
Python
a = int(input("Nombre de notes ? "))
|
|
note = 0
|
|
for i in range(a):
|
|
note += float(input("-->"))
|
|
print(f"Moyenne : {note/a}") |