>  기사  >  백엔드 개발  >  BMI 계산기에 Python 프로그램 작성

BMI 계산기에 Python 프로그램 작성

Patricia Arquette
Patricia Arquette원래의
2024-11-19 02:07:02509검색

Write a Python program to BMI calculator

BMI 계산기:

BMI는 개인의 체중을 저체중, 정상, 과체중, 비만으로 분류하는 빠르고 저렴한 방법입니다.

BMI 공식:

BMI는 체중을 키의 제곱으로 나누어 계산합니다.

미터 단위:
BMI = 체중(kg) / [신장(m)]2

미국 관습 단위:
BMI = 체중(파운드) / [신장(인치)]2 x 703

예:

# Input the weight in kilograms
weight = float(input("Enter your weight (in kg): "))

# Input the height in meters
height = float(input("Enter your height (in meters): "))

# Calculate BMI using the formula: 
bmi = weight / (height ** 2)

# Output the calculated BMI value
print("BMI:", round(bmi, 2))  # Rounds BMI to 2 decimal places 

# Function to provide feedback based on BMI 
def bmi_feedback(bmi):
    if bmi < 18.5:
        return "You are underweight"
    elif 18.5 <= bmi <= 24.9:
        return "You have a healthy weight"
    elif 25 <= bmi <= 29.9:
        return "You are overweight"
    else:
        return "You are obese"

# Call the feedback function and store the result
bmi_result = bmi_feedback(bmi)

# Output the BMI category feedback
print("BMI Result:", bmi_result)

출력:

Enter your weight:58
Enter your height:1.67
BMI: 20.796729893506402
BMI Result: You have a healthy weight

위 내용은 BMI 계산기에 Python 프로그램 작성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.