Computer Science, asked by khushalimehta122686, 17 days ago

Write a program in python to enter temperature in Fahrenhiet and convert it into Celsius. [ Hint: C=(F-32)5/9]

Answers

Answered by Anonymous
0

F = float(input("Enter temperature in

Fahrenheit: "))

C = (F-32)×(5/9)

print("The entered temperature in Celsius

is", C)

Similar questions