Discuss / Python / 从代码可以看出我计较懒,哈哈

从代码可以看出我计较懒,哈哈

Topic source

weight=input('Please input your weight:'); height=input('Please input your height kg:'); BMI=float(height)/float(weight)**2; if BMI < 18.5: print('过轻'); elif 18.5<=BMI<25: print('正常'); elif 25<=BMI<28: print('过重'); elif 28<=BMI<32: print('肥胖'); else: print('严重肥胖')


  • 1

Reply