Discuss / Python / 11

暗影小X

#1 Created at ... [Delete] [Delete and Lock User]

大神们帮忙看下哪边错误啊,结果不正确

height = 1.75

weight = 80.5

BMI=float(weight/(height**2)) 

if BMI<18.5:

    print('过轻')

elif BMI<=25:

    print('正常')

elif BMI<=28:

    print('过重')

elif BMI<=32:

    print('肥胖') 

else:

    print('严重肥胖')

暗影小X

#2 Created at ... [Delete] [Delete and Lock User]

自己查出来了,条件语句后面的:用了中文输入法打的,改成英文输入法就好了


  • 1

Reply