按照题目做举要求编森哗写的Python程序如下
def calBMI(height,weight):
BMI=weight/(height*height)
if BMI<18.5:
return [BMI,"过轻"]
elif BMI<24:
return [BMI,"正常"]
elif BMI<28:
return [BMI,"过重"]
else:
return [BMI,"肥胖"]
import re
s=input("请输入你的身高(米)和体重(公纯春碧斤)【逗号隔开】:")
s1=re.split(r'[,,]',s)
height=float(s1[0])
weight=float(s1[1])
name="李子健"
bmi=calBMI(height,weight)
print("{}的测算结果为:".format(name))
print("BMI:%.2f"%bmi[0])
print(bmi[1])
源代码(注意源代码的缩进)
sg = input('你的身高多少(米):')tz = input('你的体重多少(公斤):枣薯')
BMI = round(float(tz) / float(sg) ** 2, 1)
if BMI < 18.5:
print('BMI={0},{1}'.format(BMI, '偏瘦'))
elif 18.5 <= BMI < 24.9:
print('BMI={0},{1}'.format(BMI, '标准'))
elif 25.0 <= BMI < 29.9:
print('BMI={0},{1}'.format(BMI, '超凳樱者重'))
elif 25 <= 颂举BMI:
print('BMI={0},{1}'.format(BMI, '肥胖'))
这是委托我读五年级的儿子写的。^_^
可以使用下面这段 Python 代码来表示体重和身高计算体重指数(BMI)的公式,其中体重以千克为单位,身高以米为单位:pythonCopy codew = 70# 公斤为单位的体重h = 1.75 # 米为单位的身高bmi = w / h**2 # BMI 指数计算公伍滑式
在上述代码中,我们将体重赋值为 70 公斤,身高赋值为 1.75 米,并将其存储在变量 w 和 h 中。然后,我们使用了 BMI 指数的计算公式:体重并橘纤除以绝仿身高的平方,用 Python 代码实现为 w / h**2。最终结果存储在变量 bmi 中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)