About 41,200 results
Open links in new tab
  1. Simple BMI calculator using Python - GeeksforGeeks

    Feb 2, 2024 · This form will allow users to input their weight and height, and with the help of the Django Framework, the BMI will be automatically calculated. What is BMI Calculator ? BMI …

  2. BMI Calculator in Python – A Complete Step-By-Step Tutorial

    Sep 30, 2021 · BMI is determined by dividing a person’s weight in kilograms twice by their height in meters, Here is the code for the BMI calculator written in Python: if(BMI<=16): print("You are …

  3. BMI Calculator in Python - Stack Overflow

    Oct 30, 2015 · # this calculates Body Mass Index using Metrics standard def bmi_metrics(): weight = float(input("enter your mass in kilogram (KG) : " )) height = float(input("enter your …

  4. Program to Calculate Body Mass Index (BMI) - GeeksforGeeks

    Feb 17, 2023 · 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 …

  5. Python Program to Calculate BMI - W3Schools

    This Python program calculates Body Mass Index (BMI); it uses a simple formula to measure the amount of body fat based on a person's weight and height.

  6. Simple BMI calculator using Python - Data Insight

    Sep 21, 2021 · Step 1: We create a function named 'bodymassindex' with two parameters 'height' and 'weight'. This function returns the calculation of weight in 'kg' divided by the square of the …

  7. BMI (Body Mass Index) Calculator in Python - Includehelp.com

    Apr 13, 2023 · How to Calculate Body Mass Index (BMI)? To calculate BMI, divide the weight (in kilogram) by height (in meters) squared. The formular is to calculate BMI is weight/ (height 2). …

  8. How to Create a BMI Calculator Using Python: Step-by-Step Guide

    Apr 12, 2023 · Body Mass Index (BMI) is a body fat measurement based on height and weight that is applicable to both adult males and females. In this article, we’ll look at how to make a …

  9. How to build a BMI Calculator in Python - DEV Community

    Feb 17, 2021 · Today we will build a simple BMI Calculator in Python. How does it work? A BMI Calculator will take in the height and weight of the individual and will calculate the BMI of the …

  10. Code a Simple BMI Calculator Using Python - Medium

    Nov 22, 2023 · def calculate_bmi(weight, height): bmi = weight / (height ** 2) return bmi. This function takes weight and height as arguments and returns the calculated BMI.

  11. Some results have been removed
Refresh