-
温度的刻画有两个不同体系:摄氏度(Celsius)和华氏(Fabrenheit)。请编写程序将用户输入华氏度转换为摄氏度,或将输入的摄氏度转换为华氏度。转换算法如下:(C表示摄氏度、F表示华氏度)
C = ( F – 32 ) / 1.8
F = C * 1.8+ 3 - 代码:
temp=input()
if temp[0] in ['F','f']:
c=(eval(temp[1:])-32)/1.8
print("C{:.2f}".format(c))
elif temp[0] in ['C','c']:
f=eval(temp[1:])*1.8+32
print("F{:.2f}".format(f))
else:
print("erro")