#a. Title: Maths Quiz #b. Author: Jack Morse #c. Date: 18/05/2026 #d. Version: 1 #e. Purpose: To challenge the user to a Maths Quiz. import random def script(): print('Welcome to my Maths Quiz!!!') print("I'm going to ask you some questions!! Good Luck") ##Determine the questions choices = ["5 x 5?", "6 x 12?", "9 x 3?", "5 + 3?"] computer_choice = random.choice(choices) ##Ask the user the question user_answer = int(input(f'What is {computer_choice} ')) ##Check the answer script()