using python 4 Write a program to convert temperatures from
using python: 4. Write a program to convert temperatures from Fahrenheit to Celsius. The formula for that is: C = 5 / 9 * (F - 32). (Hint: Watch out for the integer-division gotcha!)
Solution
# program to convert temperatures from Fahrenheit to Celsius.
C = 37.5
C = 5 / 9 * (F - 32)
print(\'%0.1f degree fahrenheit is equal to %0.1f degree celcius\' %(C,F))
