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 중국어 웹사이트의 기타 관련 기사를 참조하세요!