This repository contains two versions of the classic Guess The Number game built using Python:
- 🖥️ GUI Version using Tkinter
- 💻 Console Version using basic Python
Both games challenge the player to guess a randomly generated number within limited attempts.
A modern graphical version of the game built using Python's Tkinter library.
- Welcome screen
- Random number generation
- 10 guessing attempts
- High/Low hints
- Input validation
- Interactive buttons and labels
- Python 3
- Tkinter
- Random module
python game-with-ui.pyA simple terminal-based version of the game.
- Lightweight and beginner-friendly
- Runs directly in terminal
- Random number generation
- Guess feedback system
- Limited attempts
python game1-no-ui.pyguess-the-number/
│
├── game-with-ui.py
├── game1-no-ui.py
└── README.md- Start the game
- Guess a number between 1 and 50
- The game will tell you if your guess is:
- Too High 📈
- Too Low 📉
- Guess correctly before your chances run out!
- Add difficulty levels
- Add restart option
- Store high scores
- Add timer mode
- Add multiplayer support
- Improve GUI animations
Made with Python for learning and practicing programming concepts and GUI development.
This project is open-source and free to use for educational purposes.