0 votes
in Python by
What is the difference between a module and a package in Python?

1 Answer

0 votes
by
Each Python program file is a module that imports other modules like objects. Thus, a module is a way to structure the program. The folder of a Python program is called a package of modules.

Related questions

+1 vote
0 votes
asked Jun 12, 2020 in Python by Robindeniel
0 votes
asked Jun 30, 2020 in Python by GeorgeBell
...