KnowledgeBoat Logo
|

Computer Science

A module is loaded only once regardless of the number of times it is used.

Python Modules

2 Likes

Answer

True

Reason — A module is loaded into memory only once when it is first imported, regardless of how many times it is used or imported in a program.

Answered By

3 Likes


Related Questions