def notas(nota): if nota>=0 and nota<=3: return "Insuficiente" elif nota>=4 and nota<=6: return "Suficiente" elif nota>=7 and nota<=10: return "Excelente" nota=int(input("Ingrese la calificacion")) print (notas(nota))
No hay comentarios.:
Publicar un comentario