码迷,mamicode.com
首页 > 编程语言 > 详细

【Python】BMI国内测量

时间:2018-04-16 13:07:59      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:lse   身高   mat   form   orm   val   NPU   输入   sheng   

shengao = eval(input(‘请输入以米为单位的身高(例:1.75):‘))
tizhong = eval(input(‘请输入以公斤为单位的体重(例:60):‘))
BMI = tizhong / (shengao**2)
if BMI<18.5:
print(‘BMI指数为{:.2f},偏瘦!‘.format(BMI))
elif 18.5<=BMI<24:
print(‘BMI指数为{:.2f},正常。‘.format(BMI))
elif 24<=BMI<28:
print(‘BMI指数为{:.2f},偏胖!‘.format(BMI))
else:
print(‘BMI指数为{:.2f},肥胖!该减肥了!‘.format(BMI))

【Python】BMI国内测量

标签:lse   身高   mat   form   orm   val   NPU   输入   sheng   

原文地址:https://www.cnblogs.com/naraka/p/8855212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!