Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the difference between a module and a package in Python?
Home
Python
What is the difference between a module and a package in Python?
0
votes
asked
Sep 21, 2021
in
Python
by
sharadyadav1986
What is the difference between a module and a package in Python?
module
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 21, 2021
by
sharadyadav1986
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.
...