Calculate Body Mass Index (BMI) using this simple Python script.
This BMI calculator script allows users to input their weight and height and computes their BMI based on the formula: BMI = weight (kg) / (height (m))^2. It then classifies the BMI into categories such as underweight, normal weight, overweight, and obese according to standard WHO guidelines.
Calculates BMI based on weight (in kilograms) and height (in meters).
Provides a classification of BMI into categories.
Simple and easy-to-understand Python script.
Python 3.x