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
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
Hindi,
3 months ago
Accountancy,
3 months ago
Physics,
3 months ago
History,
8 months ago
Biology,
1 year ago