tempstr=input("请输入您要转换的温度:")
if tempstr[-1] in ['F','f']:
c=(eval(tempstr[0:-1])-32)/1.8
print("您要转换的温度为{:-1}c".format(c))
elif tempstr[-1] in ['C','c']:
f=1.8*eval(tempstr[0:-1])+32
print("您要转换的温度为{:-1}f".format(f))
else:
print("输入的格式有误")
tempstr=input("请输入您要转换的温度:")
if tempstr[-1] in ['F','f']:
c=(eval(tempstr[0:-1])-32)/1.8
print("您要转换的温度为{:-1}c".format(c))
elif tempstr[-1] in ['C','c']:
f=1.8*eval(tempstr[0:-1])+32
print("您要转换的温度为{:-1}f".format(f))
else:
print("输入的格式有误")
本文标题:温度转换
本文链接:https://www.haomeiwen.com/subject/tdnejctx.html
网友评论