This project is a simple desktop game developed using Python and the Tkinter library to create a graphical user interface (GUI).
The program generates a random number, and the user tries to guess the correct number by entering their guess in the input field. The application then checks the user's input and provides feedback on whether the guess is correct or not. If the guess is incorrect, the program informs the user how many guesses are left and encourages them to try again.
The interface includes buttons to start a new game, submit a guess, and exit the application. The game logic uses random number generation and conditional statements to control the gameplay.
This project demonstrates several important programming concepts such as:
• Building graphical user interfaces using Tkinter
• Handling user input through GUI components
• Using random number generation in Python
• Implementing conditional logic and game flow
• Creating interactive desktop applications
The goal of this project was to practice Python programming while developing a simple interactive application with a user-friendly interface.