def celsius_to_fah(celsius_float): print("Convert Celsius to Fahrenheit.") x = celsius_float print("fun_1::x=",x) return celsius_float * 1.8 + 32 print("########:",celsius_to_fah(100))