How can I output underweight when input is 52 weight and 1.85 height | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I output underweight when input is 52 weight and 1.85 height

y = int(input()) y **= 2 if y < 18.5: print ("underweight") elif y >= 18.5 < 30: print ("normal") elif y <= 25 < 30: print ("overweight") elif y >= 30: print ("obesity") #bmi=weight/height² #uw<18.5 #normal=>18.5<30 #overweight<=25<30 #obesity=>30

14th Jun 2021, 4:02 PM
Yiga Mark Dan
Yiga Mark Dan - avatar
2 Answers
14th Jun 2021, 4:18 PM
Eashan Morajkar
Eashan Morajkar - avatar
0
Hi, Yiga Mark Dan! I think what you mean is: height = int(input() weight = int(input() bmi = weight / (height ** 2) if bmi < 18.5: print ("Underweight") elif bmi < 25: print("Normal") elif bmi < 30: print("Overweight") else: print("Obesity") I think that's it, Yiga Mark Dan.
14th Jun 2021, 4:06 PM
HNL
HNL - avatar