A module in Python is a single file containing Python code. It can define functions, classes, and variables. Modules help in organizing code into manageable sections.
We have a file named math_module.py
with the following content:
def add(a, b):
return a + b
We can use it by -
import math_module # importing the module
result = math_module.add(10, 5) # calling funtions
print(f"The sum is: {result}")
A package is a collection of modules organized in directories. It allows you to group related modules together. A package directory must contain a special file named init.py (which can be empty) to be recognized as a package.
We have a file named test_package.py
with the following content:
test_package/
__init__.py
module1.py
module2.py