- Create a Python package containing three modules each module should contain one function.
- Use
__init__.py
to integrate the three functions together. - Import the package using
import your_package_name
. - Import just the three functions using
from package import func1, func2, func3
.