# Termômetro Emocional do Tempo
temperatura = float(input("Digite a temperatura atual da cidade (°C): "))
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!")
To embed this project on your website, copy the following code and paste it into your website's HTML: