python module in package code example

Example 1: python upload to pip

1. Create files:
    __init__.py   setup.py   README.md   LICENSE
2. Check for setuptools and wheel:
    pip install --user --upgrade setuptools wheel
3. Generate package:
    py setup.py sdist bdist_wheel
4. Upload to pip:
    twine upload dist/*

Example 2: how to import modules in python

# import all functions in the module 0-print_list_intiger
import 0-print_list_intiger 
# import only print_list_integer function from the module 0-print_list_intiger
from 0-print_list_integer import print_list_intiger
# point the function print_list_intiger from the module 0-print_list_intiger to a string print_list_intiger
print_list_intiger = __import__('0-print_list_intiger').print_list_integer