BMI-Calculator
The Body Mass Index (BMI) or Quetelet index is a value derived from the mass (weight) and height of an individual, male or female. The BMI is defined as the body mass divided by the square of the body height and is universally expressed in units of kg/m2, resulting from the mass in kilograms and height in meters. The formula is:
BMI = (weight)/(height*height)
Examples:
Input : height(in meter): 1.79832
weight(in Kg): 70
Output : The BMI is 21.64532402096181, so Healthy.
Explanation : 70/(1.79832*1.79832)
Input : height(in meter): 1.58496
weight(in Kg): 85
Output : The BMI is 33.836256857260594 so Suffering from Obesity
Explanation : 70/(1.58496*1.58496)
Contributing
This is a personal learning project for me. Please feel free to fork this repo. Pull request to submit more programs.
Feedback
If you find any bug or have any suggestion, please do file issues. I am graceful for any feedback and will do my best to improve this package.
License
MIT © 2020 PyLaboratory