This repository contains a collection of Basic Python projects created for learning and practice purposes.
The goal of this repository is to strengthen core programming concepts and build a solid foundation in Python.
A simple program that calculates Body Mass Index (BMI) using user input.
Features:
- Takes height (in meters) and weight (in kilograms)
- Calculates BMI using formula:
BMI = weight / (height²) - Displays health category:
- Underweight
- Normal weight
- Overweight
- Obese
A simple interactive game where the user tries to guess a randomly generated number.
Features:
- Generates a random number between 1 and 100
- Allows multiple attempts until the correct guess
- Provides hints:
- Too low
- Too high
- Displays the number of attempts taken to guess correctly
- Practice Python fundamentals
- Improve problem-solving skills
- Build small real-world programs
- Prepare for coding interviews and exams
- Python (Core)
- VS Code (Code editor)