Before using a module in Python, you must import the module. This step makes the functionalities provided by the module available to your code. Using import
, you can access classes, functions, and variables defined in the module.
So the correct answer is:
You have to import the module.