A graphical Guess Game built with Tkinter β guess the number within limited attempts, with feedback via GUI.
Good for learning GUI programming, event handling, and Python basics.
- A user-friendly GUI using Tkinter
- Random number generation
- Feedback after each guess: too high / too low / correct
- Limited number of attempts
- Input validation (non-numeric input, out-of-bounds etc.)
- Clean and simple UI
Gussgame/main.pyβ Main game file (Kivy-based GUI)README.mdβ Project documentation
- Python 3.x
- Kivy
- Standard Python modules:
random(for number generation)
- Kivy modules used in this project:
kivy.config.Config(for window size)kivy.app.Appkivy.uix.boxlayout.BoxLayoutkivy.uix.label.Labelkivy.uix.textinput.TextInputkivy.uix.button.Buttonkivy.animation.Animationkivy.core.window.Window
Install dependencies with:
pip install kivy
##How to run the Code?
git clone https://github.com/Unknown27s/Gussgame.git
cd Gussgame
----