Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

simple bmi calculator using python

Hight = float(input("What is Your Hight in m:- "))
weight = float(input("What is your weight in kg:- "))
calculator = weight/Hight ** 2
print(calculator)
 
PREVIOUS NEXT
Tagged: #simple #bmi #calculator #python
ADD COMMENT
Topic
Name
8+7 =