0 votes
in Python by
Define “module” And “package” in Python?

1 Answer

0 votes
by

Each Python program file is a “module”, which imports other modules like “objects” and “attributes”.

A Python program folder is a “package” of “modules”.  A package can have “modules” or “subfolders”.

Related questions

0 votes
asked Jan 11, 2021 in Python by SakshiSharma
0 votes
asked Sep 4, 2021 in Python by SakshiSharma
...