# # This program takes a temperature, in Fahrenheits, as an input. # def main(): T = float(input("Please input todays temperature:")) if T > 90: print("It is hot today. Stay out of the sun!") elif T <= 90 and T >= 70: print("It is nice and warm today!") elif T < 70 and T >= 32: print(" It is cold today.") else: print("It is freezing today. Don't forget to wear mittens and hat!") main()