KnowledgeBoat Logo
|

Computer Science

A module is not necessarily to be imported before being used.

Python Modules

3 Likes

Answer

False

Reason — A module must be imported before it can be used in a Python program. Without importing the module, the functions, classes, or variables defined within it cannot be accessed, leading to errors in the program.

Answered By

2 Likes


Related Questions