身体质量指数BMI:对身体质量的刻画(Body Mass Index)
国际上常用的衡量人体肥胖和健康程度的重要标准,主要用于统计分析。
定义:
有上图考虑BMI的值的结果因国内和国外的标准不同而不同,故编程将两种标准均考虑进去!!!
数据类型不一致。
1、用int()转换
2、用eval()函数
先看int()或int(float())效果:
红色尖头的细节要注意!!!
tall = int(input("请输入你的身高(m):")) heigh =int( float(input("请输入你的体重(kg):"))) #注意变量 tall 和 heigh 的数据类型是字符串,若参与计算,则用eval(). # BMI=体重(kg)/身高^2(m2) BMI = heigh / pow(tall,2) if BMI < 18.5 : print("偏瘦") elif ((BMI >= 18.5 and BMI <= 25) or (BMI >= 18.5 and BMI <= 24)) : print("正常") elif ((BMI > 25 and BMI <= 30) or (BMI >24 and BMI <= 28)) : print("偏胖") elif ((BMI > 30) or (BMI >28)) : print("肥胖")
看看eval()函数:
tall = eval((input("请输入你的身高(m):"))) heigh =eval((input("请输入你的体重(kg):"))) BMI = heigh / pow(tall,2) if BMI < 18.5 : print("偏瘦") elif ((BMI >= 18.5 and BMI <= 25) or (BMI >= 18.5 and BMI <= 24)) : print("正常") elif ((BMI > 25 and BMI <= 30) or (BMI >24 and BMI <= 28)) : print("偏胖") elif ((BMI > 30) or (BMI >28)) : print("肥胖")
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试