This project is a simple Python console game developed as part of a programming checkpoint.
The goal is to guess a randomly generated number between 1 and 100, with feedback given after each attempt.
The purpose of this activity is to practice essential Python concepts:
- User input handling
- Type conversion
- Conditional statements
- Loops
- Random number generation
- Basic game logic
Guess the Number is a single-player game where:
- The program generates a random number between 1 and 100
- The player inputs guesses from the keyboard
- The game responds with:
- "Too high"
- "Too low"
- Or a success message when the guess is correct
- The game continues until the number is guessed (or attempts run out)