Skip to content

Instantly share code, notes, and snippets.

@edison7500
Created September 11, 2019 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edison7500/204bbfb1f60f4585c35b841bb66ab4a0 to your computer and use it in GitHub Desktop.
Save edison7500/204bbfb1f60f4585c35b841bb66ab4a0 to your computer and use it in GitHub Desktop.
python 计算 BMI
# how to calculate BMI
def BMI(height, weight):
bmi = weight/(height**2)
return bmi
# Driver code
height = 1.79832
weight = 70
# calling the BMI function
bmi = BMI(height, weight)
print("The BMI is", format(bmi), "so ", end='')
# Conditions to find out BMI category
if (bmi < 18.5):
print("underweight")
elif ( bmi >= 18.5 and bmi < 24.9):
print("Healthy")
elif ( bmi >= 24.9 and bmi < 30):
print("overweight")
elif ( bmi >=30):
print("Suffering from Obesity")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment