How i can slove problem this code??? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2
24th Jun 2022, 12:14 AM
Pouya Hamidvand
Pouya Hamidvand - avatar
2 Answers
+ 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")
24th Jun 2022, 1:13 AM
Aly Alsayed
Aly Alsayed - avatar
+ 3
Correct spelling inside print calls
24th Jun 2022, 2:00 AM
Emerson Prado
Emerson Prado - avatar