+ 1
Can someone tell me how to solve BMI Calculator challenge in 'python for beginners'?
I'm stuck on this since tomorrow :-(
5 Respostas
+ 3
Bmi calci discussion..
+ 1
weight = float(input())
height= float(input())
x = int(weight/height**2)
if x < 18.5:
print('Underweight')
elif x >= 18.5 and x < 25:
print('Normal')
elif x >= 25 and x < 30:
print('Overweight')
else:
print('Obesity')
+ 1
Have a loot at this.....hope it will helps...
https://code.sololearn.com/c3yuubx1Jup5/?ref=app
+ 1
Share your code where you're stuck