Write a program in python to enter temperature in Fahrenhiet and convert it into Celsius. [ Hint: C=(F-32)5/9]
Answers
Answered by
0
F = float(input("Enter temperature in
Fahrenheit: "))
C = (F-32)×(5/9)
print("The entered temperature in Celsius
is", C)
Similar questions