The process of accessing the Macro dialog box may be puzzling for some since the "Developer tab," the section where it resides, is not displayed by default in Microsoft Word. To make it visible in the ribbon, one simply needs to navigate to the File tab, select Options, and then click on Customize Ribbon. Under this option, choose Main Tabs and tick the Developer checkbox. Once done, the Developer tab will appear, allowing you to insert a macro.
Answer:
import random
random.seed(1,10) # Note: seed takes one argument, so this line has an error
a = random.randint(1, 10)
b = random.randint(1, 10)
print("Calculate: " + str(a) + " X " + str(b) + "?")
ans = int(input("Your answer: "))
if ans == a * b:
print("Well done!")
else:
print("That's wrong!")
Explanation:
My initial thought would be a photograph. A graph would be my second guess. I trust this reply resolves your inquiry!