BMI-Rechner:
Der BMI ist eine schnelle und kostengünstige Möglichkeit, das Gewicht einer Person in Untergewicht, Normalgewicht, Übergewicht oder Fettleibigkeit einzuteilen.
BMI-Formel:
Der BMI wird berechnet, indem das Gewicht durch die Körpergröße im Quadrat geteilt wird:
Metrische Einheiten:
BMI = Gewicht (kg) / [Größe (m)]2
US-übliche Einheiten:
BMI = Gewicht (Pfund) / [Größe (Zoll)]2 x 703
Beispiel:
# 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)
Ausgabe:
Enter your weight:58 Enter your height:1.67 BMI: 20.796729893506402 BMI Result: You have a healthy weight
Das obige ist der detaillierte Inhalt vonSchreiben Sie ein Python-Programm für den BMI-Rechner. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!