Pytho条件判断

Posted iamjames

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytho条件判断相关的知识,希望对你有一定的参考价值。

 1 def health_status():
 2     height = float(input("请输入身高(单位:米) :"))
 3     weight = float(input("请输入体重(单位:公斤) :"))
 4     status = weight / (height * height)
 5     if status < 18.5:
 6         print("BMI指数 :过轻!")
 7     elif 18.5 <= status <= 25:
 8         print("BMI指数 :正常")
 9     elif 25 <= status <= 28:
10         print("BMI指数 :过重")
11     elif 28 <= status <= 32:
12         print("BMI指数 :肥胖")
13     elif status > 32:
14         print("BMI指数 :严重肥胖!")
15     else:
16         print("!超出指标范围!请输入正确的 身高(米)&体重(公斤)")
17 
18 health_status()

 

以上是关于Pytho条件判断的主要内容,如果未能解决你的问题,请参考以下文章

兼容ie8,firefox,chrome浏览器的代码片段

JS常用代码片段-127个常用罗列-值得收藏

初识python-条件判断

PHP WordPress条件为主页SlideDeck主题代码片段

条件片段和导航重用

Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数