import p13_1 print("32摄氏度 = %.2f 华氏度" % p13_1.c2f(32)) print("99摄氏度 = %.2f 摄氏度" % p13_1.f2c(99))
import p13_1 as tc print("32摄氏度 = %.2f 华氏度" % tc.c2f(32)) print("99摄氏度 = %.2f 摄氏度" % tc.f2c(99))
from p13_1 import c2f, f2c print("32摄氏度 = %.2f 华氏度" % c2f(32)) print("99摄氏度 = %.2f 摄氏度" % f2c(99))
import p13_1 as fc print("32摄氏度 = %.2f华氏度" %fc.c2f(32)) print("99华氏度 = %.2f 摄氏度" %fc.f2c(99))