Python Module vs package

0 votes
Difference between a Python module and a Python package?
Nov 13, 2018 in Python by findingbugs
• 3,260 points
717 views

1 answer to this question.

0 votes

A package is represented by an imported top-entity which could either be a self-contained module, or the __init__.py special module as the top-entity from a set of modules within a sub directory structure.So physically a package is a distribution unit, which provides one or more modules

answered Nov 13, 2018 by Priyaj
• 58,090 points

Related Questions In Python

0 votes
1 answer
+1 vote
7 answers
+1 vote
3 answers

Difference between append vs. extend list methods in Python

Python append() method adds an element to ...READ MORE

answered Aug 21, 2019 in Python by germyrinn
• 240 points
96,243 views
0 votes
1 answer

Difference between append vs. extend list methods in Python

append: Appends object at the end. x = ...READ MORE

answered Aug 8, 2018 in Python by bug_seeker
• 15,520 points
2,091 views <