Computer Science, asked by riyasinha4979, 5 months ago

write a Python program to accept the temperature in Fahrenheit and convert it into celcius. {(Formula c =(f-32)*5/9) ​

Answers

Answered by Dynamicarmies
9

Phyton program for convert fahrenheit into celcius :

Fahrenheit = input("Enter temperature in Fahrenheit : ")

Celcius = (Fahrenheit - 32)*5/9

print "the temperature in celcius is : " , Celcius

Answered by anindyaadhikari13
6

Question:-

  • Write a Python program to accept the temperature in Fahrenheit and convert it into celcius.

Program:-

f=float(input("Enter the temperature in Fahrenheit: "))

c=5*(f-32)/9

print("Temperature in degree Celsius is: ",c)

Similar questions