bmi_category(weight_kg, height_m) that computes bmi = weight_kg / height_m ** 2 and returns the category: "Underweight" (bmi < 18.5), "Normal" (18.5 <= bmi < 25), "Overweight" (25 <= bmi < 30), or "Obese" (bmi >= 30). Round the computed bmi to 1 decimal place before comparing is not required — compare the raw value.bmi_category(70, 1.75)
"Normal"
bmi = 70/1.75**2 ≈ 22.86, which is Normal.
bmi_category(45, 1.70)
"Underweight"
bmi ≈ 15.57, below 18.5.
Compute bmi first, then branch on it.
Use `<` and `>=` boundaries consistently so ranges do not overlap.