A simple Python script to calculate Body Mass Index (BMI) using user input for height and weight. Great for beginners learning basic input/output and arithmetic operations in Python.
- Accepts user input for height and weight
- Calculates BMI using the formula: [ \text{BMI} = \frac{\text{weight (kg)}}{(\text{height (m)})^2} ]
- Categorizes the result (Underweight, Normal, Overweight, Obese)
- Make sure you have Python 3.x installed.
- Clone or download this repository.
- Run the script using:
python bmi_calculator.py