0
Please who know how the projects in python work...have been doing the right thing in BMI calculator project and I keep failing
Project
9 Respostas
+ 5
Okundaye Jesse Eghosasere ,
please link your code here otherwise we can only guess what your issue is.
thanks!
+ 5
Okundaye Jesse Eghosasere
Check spelling of printed value. First character should be in Capital letter
+ 3
A͢J
I just changed it ...it worked
Thank you very much ...I appreciate
+ 2
Okundaye Jesse Eghosasere
Underweight
Normal
Overweight
Obesity
Check these spellings, first character is in Capital letter.
And check your code, you have written in small character.
+ 1
G'day Okundaye Jesse Eghosasere nice work!
Your question comes up often here, you may have found the answer if you used the SoloLearn search bar (the magnifying glass icon at the top of the discuss screen). You may even find one that starts with [Solved], you can be sure that is a champion answer. Perhaps you can edit your post to start with [Solved]
https://www.sololearn.com/discuss/1316935/?ref=app
0
#your code goes here
weight = float(input())
height = float(input())
BMI = weight/height**2
if BMI < 18.5:
print("underweight")
elif BMI >= 18.5 and BMI < 25:
print("normal")
elif BMI >= 25 and BMI < 30:
print("overweight")
elif BMI >= 30:
print("obesity")
Lothar
0
HungryTradie
Thanks
0
So is it [Solved]