Description
The package packagebmi is used to:
- Calculate individual body mass index.
- Find out what basic category the person is.
Use the package manager pip to install packagebmi
pip install packagebmi
from packagebmi import filebmi
filebmi.bmi(weight, height)
filebmi.bmi_category(weight, height)
The function 'filebmi.bmi(weight, height)' returns bmi result.
The function 'filebmi.bmi_category(weight, height)' returns bmi category.
Glauco Mori