Question: Write a Python program to calculate Body Mass Index ( BMI ) . The program must collect weight and height information from the user and
Write a Python program to calculate Body Mass Index BMI The program must collect weight and height information from the user and save it in a variable called "Weight" and "Height". You should also store the BMI information in another variable called "BMI".
The formula for BMI is:
For example, if a person is and meters, then:
BMI
After calculating BMI, you must add some health advice based on the BMI value.
if BMI then the program must print "You're in the underweight range."
if BMI then the program must print "You're in the healthy weight range."
if BMI then the program must print "You're in the overweight range."
If BMI then the program must print "You're in the obese range."
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
