Assume that your body mass index (BMI) program calculated a BMI of 25.1. What would be the value of
category after this portion of the program was executed?
# Determine the weight category.
if BMI < 18.5:
category= "underweight"
elif BMI > 39.9:
category= "morbidly obese"
elif BMI <= 24.9:
category= "normal"
elif BMI <= 39.9:
category= "overweight"
01:52:46
The value of category will be