Question: Using Python Develop a simple game that teaches kindergartners how to add single-digit numbers. Your function game() will take an integer n as input and
Using Python
Develop a simple game that teaches kindergartners how to add single-digit numbers. Your function game() will take an integer n as input and then ask n single-digit addition questions. The numbers to be added should be chosen randomly from the range [0, 9] (i.e., 0 to 9 inclusive). The user will enter the answer when prompted. Your function should print 'Correct' for correct answers and 'Incorrect' for incorrect answers. After n questions, your function should print the number of correct answers.
>>> game(3) 8 + 2 =
Enter answer: 10
Correct.
6 + 7 =
Enter answer: 12
Incorrect. 7 + 7 =
Enter answer: 14
Correct.
You got 2 correct answers out of 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
