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

    Jul 23, 2025 · In this article, we will guide you through the process of building a straightforward Body Mass Index (BMI) calculator using Python. To enhance user interaction, we will implement a simple …

  2. Welcome to Python.org

    Python knows the usual control flow statements that other languages speak — if, for, while and range — with some of its own twists, of course. More control flow tools in Python 3 Experienced programmers …

  3. Calculate Your BMI - NHLBI, NIH

    Calculate Your BMI Body mass index (BMI) is a measure of body fat based on height and weight that applies to adult men and women. Your BMI is just one piece of the puzzle. It’s based on height and …

  4. 7. Input and OutputPython 3.14.3 documentation

    Mar 26, 2026 · 7. Input and Output ¶ There are several ways to present the output of a program; data can be printed in a human-readable form, or written to a file for future use. This chapter will discuss …

  5. GitHub - Akilapcj/BMI-calculator: This project demonstrates how to ...

    This project demonstrates how to create a simple BMI (Body Mass Index) calculator using Python in Visual Studio Code. The BMI calculator allows users to input their weight and height, then calculates …

  6. BMI Calculator

    The Body Mass Index (BMI) Calculator can be used to calculate BMI value and corresponding weight status while taking age into consideration. Use the "Metric Units" tab for the International System of …

  7. 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.

  8. How to create BMI Calculator Web App using Python and PyWebIO ?

    Jul 19, 2022 · In this article, we are going to create a BMI calculator using the PyWebIO module. This is a python module mostly used to create simple and interactive interfaces on the web using Python …

  9. Basic Input and Output in Python

    In this tutorial, you'll learn how to take user input from the keyboard with the input() function and display output to the console with the print() function. You'll also use readline to improve the user experience …

  10. Python - BMI Calculator Project - w3resource

    Sep 16, 2025 · Learn to build a BMI calculator Project in Python using two methods: a simple function-based approach and a class-based, reusable structure.