A module is loaded only once regardless of the number of times it is used.
3 Likes
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
A module line (header) is written only once at the top of the program.
A function call can be made several times in a Python module.
The statement to import math module is—call math.
A module is not necessarily to be imported before being used.