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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started