Computer Science, asked by kpfeverforever, 10 months ago

python code to convert farenheit to celsius​

Answers

Answered by mayurmaurya
0

Explanation:

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))

Similar questions