#convert Centigrade to Fahrenheit, with displayed #result rounded off to nearest integer. def CtoF(): ctemp=input("Enter the temperature in Centigrade.") ftemp= round(1.8*ctemp+32) print "The temperature in Fahrenheit is ",ftemp," degrees."