Program to convert fahrenheit to celsius in python

 fahrenheit=float(input("Enter temperature in fahrenheit"))

celsius = (fahrenheit - 32)*(5/9)

print("%0.2f degree fahrenheit is %0.2f degree celsius"%(fahrenheit,celsius))


Comments

Popular posts from this blog

Data Science Matplotlib Library Data Visualization, ASSIGNMENT - 6, GO_STP_8113