I am in the process of writing a quiz using simple Python as part of a project- ultimately to create an executable file that runs the quiz when opened (so the user doesn't have to manually run the code and potentially see answers to some of the questions).
As part of my quiz, I use the webbrowser module to send the user to a Wikipedia page if their first answer submitted is incorrect so they can research the correct one. Is there any way to integrate this module into my code, so that it doesn't need to be imported (and therefore if it is used on another computer, the user doesn't have to download the module in order to take the quiz).