Yahoo India Web Search

Search results

  1. Sep 30, 2021 · Learn how to calculate Body Mass Index (BMI) using Python code and check your health status based on BMI categories. See the formula, the code, and the sample outputs in this step-by-step tutorial.

  2. Learn how to use a simple formula to measure the amount of body fat based on a person's weight and height in Python. See the code, output, and explanation of BMI and its categories.

  3. Feb 2, 2024 · Learn how to create a BMI calculator using Python and Django Framework with a graphical user interface. The web page explains the BMI formula, the interpretation of BMI values, and the code for the project.

  4. Oct 30, 2015 · height = float(input("Your height in metres:")) weight = int(input("Your weight in kilograms:")) bmi = round(weight/ (height * height), 1) if bmi <= 18.5: print('Your BMI is', bmi, 'which means you are underweight.') elif bmi > 18.5 and bmi < 25: print('Your BMI is', bmi, 'which means you are normal.') elif bmi > 25 and bmi < 30: print('Your ...

  5. Learn how to create a BMI calculator in Python using the formula weight / (height * height). Find out how to fix bugs and display the BMI and status to the user.

  6. Feb 17, 2023 · The formula is: BMI = (mass or weight)/(height*height) where, mass or weight is in Kg, height is in meters. Examples: Input : height(in meter): 1.79832. weight(in Kg): 70. Output : The BMI is 21.64532402096181, so Healthy.

  7. People also ask

  8. Learn how to calculate Body Mass Index (BMI) using Python programming language. See the formula, the code implementation, and the output for different BMI categories.