Please who know how the projects in python work...have been doing the right thing in BMI calculator project and I keep failing | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

27th Mar 2022, 11:01 AM
Okundaye Jesse Eghosasere
Okundaye Jesse Eghosasere - avatar
9 Answers
+ 5
Okundaye Jesse Eghosasere , please link your code here otherwise we can only guess what your issue is. thanks!
27th Mar 2022, 11:04 AM
Lothar
Lothar - avatar
+ 5
Okundaye Jesse Eghosasere Check spelling of printed value. First character should be in Capital letter
27th Mar 2022, 11:22 AM
A͢J
A͢J - avatar
+ 3
A͢J I just changed it ...it worked Thank you very much ...I appreciate
27th Mar 2022, 2:41 PM
Okundaye Jesse Eghosasere
Okundaye Jesse Eghosasere - avatar
+ 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.
27th Mar 2022, 1:03 PM
A͢J
A͢J - avatar
+ 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
27th Mar 2022, 8:45 PM
HungryTradie
HungryTradie - avatar
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
27th Mar 2022, 11:06 AM
Okundaye Jesse Eghosasere
Okundaye Jesse Eghosasere - avatar
0
27th Mar 2022, 9:03 PM
Okundaye Jesse Eghosasere
Okundaye Jesse Eghosasere - avatar
0
So is it [Solved]
27th Mar 2022, 10:11 PM
HungryTradie
HungryTradie - avatar
- 1
A͢J please can you show me how you did yours...your BMI calculator project in python for beginners
27th Mar 2022, 12:23 PM
Okundaye Jesse Eghosasere
Okundaye Jesse Eghosasere - avatar