top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Body Mass Index (BMI) calculator


The body mass index (BMI) is used to estimate the ideal weight according to height. Its calculation is simple: it corresponds to the weight divided by the square of the height (BMI = weight in kg/height² in m).

The figure obtained is used to estimate the corpulence and possibly the overweight or obesity of an adult man or woman.


You are curious to determine your BMI to take precautions and take care of your health. The code below will allow you to calculate your BMI and know if you are overweight or not.



# calcul BMI
def calcul_bmi(height,weight):
    bmi= weight/height**2
    bmi_round = round(bmi,2)
    if bmi < 18.5:
        print('your BMI is ' + str(bmi_round) + ' and you are underweight')
    elif bmi <= 24.9 :
        print('your BMI is ' + str(bmi_round) +' and you have normal wieght')
    elif bmi <= 29.9 :
        print('your BMI is ' + str(bmi_round) + ' and you are overweight')
    else :
        print('your BMI is ' + str(bmi_round) + 'and you are obese')

We used the round() function to convert the BMI values to two decimal places.


Let's practice by giving an example with this code. The input is written as follows:

calcul_bmi(1.80, 70)

The result showing Kodjo's BMI reveals that he has a normal weight. The output below confirms this.

your BMI is 21.6 and you have normal wieght

 


0 comments

Recent Posts

See All
bottom of page