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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!