bmi之python
时间: 2024-11-27 20:20:04 浏览: 3
python实现BMI计算
BMI(Body Mass Index,身体质量指数),是一个用于估算一个人体重是否健康的指标,通常计算公式是体重(公斤)除以身高(米)的平方。在Python中,你可以编写一个简单的程序来计算BMI并提供相应的健康评估。以下是一个基本示例:
```python
def calculate_bmi(weight, height):
"""
计算BMI
:param weight: 体重,单位为公斤
:param height: 身高,单位为米
:return: BMI值和健康建议
"""
bmi = weight / (height ** 2)
if bmi < 18.5:
health_status = "过轻"
elif 18.5 <= bmi < 24:
health_status = "正常范围"
elif 24 <= bmi < 29:
health_status = "超重"
else:
health_status = "肥胖"
return bmi, health_status
# 示例使用
weight_kg = float(input("请输入您的体重(公斤):"))
height_m = float(input("请输入您的身高(米):"))
bmi, status = calculate_bmi(weight_kg, height_m)
print(f"您的BMI值是:{bmi:.2f},属于{status}范围。")
阅读全文