Discuss / Python / 快速过一遍

快速过一遍

Topic source

凌久殇

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

s = input('birth:')

birth = int(s)

if birth < 2000:

print('00前')

else:

print("00后")

height = 1.75

weight = 80.5

h = input('height:') w = input('weight:') height = float(h) weight = float(w) BMI = weight / (height * height) if BMI < 18.5: print('体重过轻') elif BMI < 25: print('体重正常') elif BMI < 28: print('体重过重') elif BMI < 32: print('肥胖') else: print('严重肥胖')


  • 1

Reply