Computer Science, asked by adityavivek374, 8 months ago

Write a program in python to enter temperature in Fahrenhiet and convert it into Celsius.

        [ Hint: C=(F-32)5/9] 

hu​

Answers

Answered by anshu24497
6

Python Program to Convert Celsius To Fahrenheit and Vice Versa

Celsius = (Fahrenheit – 32) * 5/9 Fahrenheit = (Celsius * 9/5) + 32.

celsius = float(input("Enter temperature in celsius: ")) fahrenheit = (celsius * 9/5) + 32 print('%.2f Celsius is: %0.2f Fahrenheit' %(celsius, fahrenheit))

PLEASE MAKE ME BRAINLIEST AND FOLLOW ME

Similar questions