temperatura = int(input("Ingresa la temperatura actual: "))

if temperatura > 30:
    print("Hace mucho calor.")
elif temperatura > 20:
    print("Es un día agradable.")
elif temperatura > 10:
    print("Hace un poco de frío.")
else:
    print("Hace mucho frío.")

Embed on website

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