print("Por favor ingrese su nombre y su puntaje del 1 al 100 para mostrarle su nota cualitativa")
nombre=input()
puntaje= int(input())
print(f"Su nombre es {nombre} y su puntaje es {puntaje}")

if 80 <= puntaje <=100:
    print("Su nota cualitativa es A")
elif 70 <= puntaje <= 79:
    print("Su nota cualitativa es B")
elif 60 <= puntaje <= 69:
    print("Su nota cualitativa es C")
elif 50 <= puntaje <= 59:
    print("Su nota cualitativa es D")
elif 0 <= puntaje <= 49:
    print("Su nota cualitativa es F")
else:
    print("El puntaje es de 1 a 100")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: