This is a simple Math Quiz Game built with Python, using the easygui
library for a graphical user interface. The game generates random math problems for the user to solve, and it keeps track of the score and time taken to complete the problems.
- Randomly generated math problems using basic operators: addition (
+
), subtraction (-
), multiplication (*
), division (/
), and modulo (%
). - Five problems per game, with random numbers between 1 and 10.
- User-friendly interface with
easygui
dialogs for input and results. - Tracks the user's score and total time taken to complete the quiz.
- Handles special cases like division by zero and invalid input.
- Python 3.x
easygui
library
- Clone the repository: git clone https://github.com/yourusername/math-quiz-game.git
- Navigate to the project directory: cd math-quiz-game
- Install the required dependencies: You need to have the easygui library installed. If it's not already installed, you can install it using: pip install easygui
- Run the scrip: python math_quiz_game.py
- Follow the prompts in the easygui dialogs to answer the math problems.
- At the end of the game, your score and the time taken will be displayed.
- The game consists of 5 math problems.
- Problems are generated randomly with basic math operators.
- You need to enter the correct numeric answer to score a point.
- The final score is displayed at the end, along with the total time taken.