How i can slove problem this code??? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2
24th Jun 2022, 12:14 AM
Pouya Hamidvand
Pouya Hamidvand - avatar
2 Réponses
+ 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