+ 2
How i can slove problem this code???
2 Antworten
+ 5
weight = float (input())
height = float(input())
BMI = weight /(height*2)
if BMI<18.5:
print("underweghit")
elif((BMI>=18.5) and (BMI<25)):
print("normal")
elif((BMI>=25) and (BMI<30)):
print("overweight")
elif((BMI>=30)):
print("obesity")
+ 3
Correct spelling inside print calls