【python日常学习】程序的分支结构:身体质量指数BMI
https://attach.52pojie.cn//forum/202007/26/201508ili85ccpqi9ul0i0.png?lhttps://attach.52pojie.cn//forum/202007/26/201510vhln7lbnlybuckb7.png?l
weight = eval(input("请输入体重(千克):"))
hight = eval(input("请输入身高(米):"))
BMI = weight/pow(hight,2)
print("BMI数值:{:.2f}".format(BMI))
if BMI<18.5:
a = "偏瘦"
elif BMI>=18.5 and BMI<25:
a = "正常"
elif BMI>=25 and BMI<30:
a = "偏胖"
else:
a = "肥胖"
if BMI<18.5:
b = "偏瘦"
elif BMI>=18.5 and BMI<24:
b = "正常"
elif BMI>=24 and BMI<28:
b = "偏胖"
else:
b = "肥胖"
print("国际BMI值:{0}".format(a),"国内BMI值:{0}".format(b))
eval(input()) 不安全 为什么发了两遍 重复发贴 顶顶学习啦啊
学习贴,顶了 一个format就够用了 谢谢,学习了哦。 学习贴,谢谢了 学习了,感谢哦
页:
[1]