# convert.py # A program to convert Celsius temperatures to Fahrenheit. # by: Susan Computewell (aka John Zelle, taken from page 28 of his text). def main(): celsius = input("What is the Celsius temperature? ") fahrenheit = (9.0 / 5.0) * celsius + 32 print "The temperature is", fahrenheit, "degrees Fahrenheit." main()