Computer Science, asked by manandhall480, 10 months ago

Write python program to convert temperature from Fahrenheit to Celsius.

Answers

Answered by Anonymous
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 Anonymous
5

Mark the above as brainliest

Similar questions