Answers for "python code to calculate bmi"

2

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)
Posted by: Guest on July-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language