Olá! Segue minha resolução da atividade. Fico à disposição para quaisquers dicas ou críticas construtivas
weight = float(input("Enter your weight (kg): "))
height = float(input("Enter your height (m): "))
bmi = weight / (height ** 2)
print(f"Your BMI is: {bmi:.2f}")
if bmi < 18.5:
print("You are Underweight.")
elif bmi < 24.99:
print("You are at a healthy weight.")
elif bmi < 29.99:
print("You are Overweight")
elif bmi < 34.99:
print("You are in Obesity Class I")
elif bmi < 39.99:
print("You are in Obesity Class II")
else:
print("You are in Obesity Class III")