# convert.py # Neal Nelson - copied from the Zelle Text p28 # 2009.10.05 # # Convert Celsius to Fahrenheit def main(): c = input("What is the Celsius temperature? ") f = (9.0/5.0) * c + 32 print "The temperature is", f, "degrees Fahrenheit." main()