A Python module for Checking your bmi
pip install Py-bmi
from py_bmi import bmi
from py_bmi import bmi
weight = 85
height = 1.4
print(bmi(weight,height))
# >> OH.. Noo.. You are Obesity
#The First Variable Must Be Weight In Kilograms
#The Second Variable Must Be Height In Meters
#Both Are Must Be Intergers
Fayas Noushad & Lokaman For Helping Me