#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 num_1 = random.randint(1, 10) num_2 = random.randint(1, 10) #choices = ["What is 5 x 5?", "How many times can 6 go into 12?", "What is 9 x 3?", "What is 5 + 3?"] #computer_choice = random.choice(choices) answer = int(input(f'What is {num_1} x {num_2}? ')) script()