from tempconv import ctof from tempconv import ftoc temp = 95 convTemp = ftoc(temp) print("the converted temp is " + str(convTemp)) temp = 0 convTemp = ctof(temp) print("the converted temp is " + str(convTemp)) #//python/7394