nombre=input("Ingrese el nombre del estudiante: ")
puntaje=int(input("Ingrese el puntaje (1 a 100): "))
if 80 <= puntaje <= 100:
nota = "A"
elif 70 <= puntaje <= 79:
nota = "B"
elif 60 <= puntaje <= 69:
nota = "C"
elif 50 <= puntaje <= 59:
nota = "D"
elif 0 <= puntaje <= 49:
nota = "F"
else:
nota = "Puntaje fuera de rango"
print(f"{nombre}, su nota cualitativa es: {nota}")
To embed this project on your website, copy the following code and paste it into your website's HTML: