write a program to convert temperature in fahrenheit to temperature in celsius (python)
Answers
Answered by
1
Explanation:
See this example:
celsius = float(input('Enter temperature in Celsius: ')) # calculate temperature in Fahrenheit. fahrenheit = (celsius * 1.8) + 32. print('%0.1f Celsius is equal to %0.1f degree Fahrenheit'%(celsius,fahrenheit))
Answered by
1
Answer:
sorry I don't know the answer sorry
Similar questions