Write python program to convert temperature from Fahrenheit to Celsius.
Answers
Answered by
98
Answer:
Python Code:
upper() == "C": result = int(round((9 * degree) / 5 + 32)) o_convention = "Fahrenheit" elif i_convention. upper() == "F": result = int(round((degree - 32) * 5 / 9)) o_convention = "Celsius" else: print("Input proper convention.") quit() print("The temperature in", o_convention, "is", result, "degrees.")
Answered by
5
Mark the above as brainliest
Similar questions