Automate the Boring Stuff with Python (Chapter 8): Write Your Own Multiplication Quiz
Hi, this is the challenge: To see how much PyInputPlus (module) is doing for you, try re-creating the multiplication quiz project on your own without importing it. This program will prompt the user with 10 multiplication questions, ranging from 0 Ă 0 to 9 Ă 9. Youâll need to implement the following features: If the user enters the correct answer, the program displays âCorrect!â for 1 second and moves on to the next question. The user gets three tries to enter the correct answer before the program moves on to the next question. Eight seconds after first displaying the question, the question is marked as incorrect even if the user enters the correct answer after the 8-second limit. This is my answer: https://code.sololearn.com/ciTtqGjUi86I/?ref=app Perhaps any of you can complete this exercise without making so many copies of the same code?