A simple number guessing game with Python
A simple Python number guessing game where the player tries to guess a randomly generated number.
- Random number generation
- User input handling
- Feedback for high and low guesses
- Unlimited guessing attempts (or until correct)
- Python 3
git clone <repository-url>
cd number-guessing-gamepython guess_the_number.pyGuess a number between 1 and 100: 50
Too high!
Guess a number between 1 and 100: 25
Too low!
Guess a number between 1 and 100: 37
Congratulations! You guessed the number.
- Python fundamentals
- Loops and conditionals
- User input validation
- Random number generation
Sazid Al Mafi