feat: Initial commit

This commit is contained in:
2024-03-22 17:01:42 +01:00
parent 954985f39a
commit c343ff6e93
106 changed files with 143428 additions and 1 deletions

16
Cicli/media.py Normal file
View File

@@ -0,0 +1,16 @@
somma = 0
conto = 0
while True:
uinput = float(input("Voto da inserire: "))
if uinput == -1:
break
if uinput <= 20:
somma += uinput
conto += 1
if conto != 0:
print("La media è: ", somma/conto)