Hello guys, I just want to see, how you did solve the task from python for beginners BMI Calculator. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hello guys, I just want to see, how you did solve the task from python for beginners BMI Calculator.

Hello guys, I'm new to here and just started learning programming. As you can see in question string I'm learning python. There was a quiz to create the program to calculate BMI by entering your height and weight. I've solved it already, but want to see other ver of solving this quiz. Could be kind plz to show me your versions of making BMI Calculator https://code.sololearn.com/cCdSqJkxsH70/?ref=app

20th Apr 2022, 4:24 PM
Max Tumarbek
Max Tumarbek - avatar
7 Answers
+ 3
First can you show your version??
20th Apr 2022, 4:25 PM
Jayakrishna 🇮🇳
+ 2
# my solution weight = int(input()) height = float(input()) bmi = weight / height ** 2 if bmi < 18.5: print("Underweight") elif 25 > bmi >= 18.5: print("Normal") elif 30 > bmi >= 25: print("Overweight") elif bmi > 30: print("Obesity")
20th Apr 2022, 4:40 PM
Рената Ремизова
Рената Ремизова - avatar
+ 2
edit: Max Tumarbek here is possible other approaches sum = weight//(height**2) #i think you need / instead of // for fraction value. may it coincidence passing all. if sum < 18.5: print("Underweight") elif sum <= 25: #you can go like this also.. .. another way : elif 25 <= sum <= 30: #means in between python allows this: elif sum > 30: # you can remove this condition, just use else.. print("Obesity") these are other possible ways you can go with.. hope these helps.. search bar will give you lot of answers... edit: https://www.sololearn.com/discuss/637206/?ref=app
20th Apr 2022, 4:40 PM
Jayakrishna 🇮🇳
+ 2
Thank you for you answers very much!
20th Apr 2022, 5:04 PM
Max Tumarbek
Max Tumarbek - avatar
+ 1
Linked my code
20th Apr 2022, 4:30 PM
Max Tumarbek
Max Tumarbek - avatar
0
You're welcome..
20th Apr 2022, 7:12 PM
Jayakrishna 🇮🇳