python求bmi求三次
时间: 2023-07-26 08:48:57 浏览: 93
python实验报告-Python分支结构.doc
5星 · 资源好评率100%
好的,以下是 Python 代码实现:
```python
def calculate_bmi(weight, height):
'''计算BMI指数'''
bmi = weight / (height ** 2)
return bmi
# 第一次计算BMI
weight1 = 60
height1 = 1.7
bmi1 = calculate_bmi(weight1, height1)
print("第一次计算的BMI指数为:%.2f" % bmi1)
# 第二次计算BMI
weight2 = 70
height2 = 1.75
bmi2 = calculate_bmi(weight2, height2)
print("第二次计算的BMI指数为:%.2f" % bmi2)
# 第三次计算BMI
weight3 = 80
height3 = 1.8
bmi3 = calculate_bmi(weight3, height3)
print("第三次计算的BMI指数为:%.2f" % bmi3)
```
这段代码定义了一个 `calculate_bmi` 函数用于计算 BMI 指数,然后分别给出了三组体重和身高数据进行 BMI 指数的计算,并输出结果。
阅读全文