写一段python去计算bmi

下面是一段用 Python 计算BMI的代码:

def calculate_bmi(height, weight):
    bmi = weight / (height/100)**2
    return bmi

height = float(input("请输入您的身高(cm):"))
weight = float(input("请输入您的体重(kg):"))
bmi = calculate_bmi(height, weight)

print("您的BMI指数为:%.2f" % bmi)

这段代码定义了一个 calculate_bmi 函数,用于根据身高和体重

你可能感兴趣的:(写一段python去计算bmi)