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 80kg and 1.8 meters, then:
BMI=801.82=24.6
After calculating BMI, you must add some health advice based on the BMI value.
if BMI18.5 then the program must print "You're in the underweight range."
if 18.5= BMI 24.9 then the program must print "You're in the healthy weight range."
if 25BMI29.9 then the program must print "You're in the overweight range."
If BMI>29.9 then the program must print "You're in the obese range."
 Write a Python program to calculate Body Mass Index (BMI). The

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!