#!/usr/bin/python # f2c.py # # Converts a Fahrenheit temperature to Celsius. # # AMJ # 15th October 2002 f = input ("Enter Fahrenheit temperature: ") c = (5.0 / 9.0) * (f - 32) print f, "Fahrenheit is", c, "Celsius."