Module
Modules are one of Python’s main abstraction layers, and probably the most natural one. Abstraction layers allow a programmer to separate code into parts that hold related data and functionality.
from modu import *
is considered bad practice, since it makes code harder to read and dependencies less compartmentalized.