首页 > 代码库 > 第一天--简单使用python-编写体重指数BMI
第一天--简单使用python-编写体重指数BMI
height = input(‘你的身高是多少M:‘)
height = float(height)
if 0.01<=height<=2.24:
print()
elif height<=0:
print("你确定你是人吗?")
else:
exit(‘请输入正确的值‘)
weight = input(‘你的体重是多少KG:‘)
weight = float(weight)
BMI = weight/(height*height)
if BMI >=30:
print(‘重度肥胖‘)
elif BMI>=27:
print(‘肥胖‘)
elif BMI>=24:
print(‘偏胖‘)
elif BMI>=18.5:
print(‘正常‘)
else:
print(‘偏瘦‘)
本文出自 “出来乍到” 博客,请务必保留此出处http://891002.blog.51cto.com/882365/1847095
第一天--简单使用python-编写体重指数BMI
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。