赞
踩
#e1.1TempConvert.py
Tempstr = input(“请输入带有符号的温度值:”)
if Tempstr[_1] in [“f”,“F”]:
C = (eval(Tempstr[0:-1]-32))/1.8
print(“转换后的温度是{:.2f}C”.format(C))
elif Tempstr[-1] in [“c”,“C”]:
F = (eval(Tempstr[0:-1])*1.8)+32
print(“转换后的温度是{:.2f}F”.format(F))
else:
print(“输入格式错误”)
#e1.2MoneyConvert.py
money_str=input(“请输入要转换的币值:”)
if eval(money_str[0:-1] )>0:
if money_str[-1] in [“y”,“Y”]:
D = eval(money_str[0:-1])/6.37
print(“转换后的美元值是:{:.2f}D”.format(D))
elif money_str[-1] in[“d”,”D”]:
Y = eval(money_str[0,-1])*6.37
print(“转换后的美元数值是{:.2f}Y”.format(Y))
else:
print(“输入格式错误!”)
else:
print(“用户输入错误!”)
②浮点数类型(float):
③复数类型(complex)——不考
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。