"""
Promedio de 3 notas
"""""
nota1 = int(input("ingresa la primera nota: "))
nota2 = int(input("ingresa la segunda nota: "))
nota3 = int(input("ingresa la tercera nota: "))
suma=nota1+nota2+nota3
promedio = suma / 3
if promedio == 10:
print ("excelencia")
elif promedio >= 7:
print ("promocionado")
elif promedio >6 and promedio <7:
print ("regular")
elif promedio == 6:
print ("reprobado")
elif promedio <6:
print ("nivel muy bajo,baja de la escuela")
To embed this program on your website, copy the following code and paste it into your website's HTML: