在python中使用tempconv模块转换问题
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中使用tempconv模块转换问题
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))