Skip to content

Instantly share code, notes, and snippets.

@barseghyanartur
Created May 28, 2019 12:49
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 barseghyanartur/313d5b6b953277dddfe861362e085dfb to your computer and use it in GitHub Desktop.
Save barseghyanartur/313d5b6b953277dddfe861362e085dfb to your computer and use it in GitHub Desktop.
Body weight/height BMI calculation

BMI is weight divided by height in the power of two.

bmi = weight / height**2

Body Mass Index Scale

  • Underweight: less than 18.5
  • Normal weight: 18.5 - 25
  • Overweight: 25 - 30
  • Obesity: greater than 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment