temperatura = float(input("Digite a temperatura atual da cidade: "))

if temperatura < 15:
    print("Está frio, hora do casaco!")
elif temperatura <= 25:
    print("O tempo está agradável.")
else:
    print("Está calor, use filtro solar!")

Embed on website

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