📜  django 中的“%(class)s” - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:12.431000             🧑  作者: Mango

代码示例4
notas = []
for indice in range(1,6):
    while True:
        nota = int(input("Introduce la nota %d:" % indice))
        if nota>=0 and nota<=10: break
    notas.append(nota)

# Muestro resultados

print("Notas: ",end="")
for nota in notas:
    print(nota," ",end="")
print()
print("Nota media: ",sum(notas)/len(notas))
print("Nota max: ",max(notas))
print("Nota min: ",min(notas))