# `basicpkg`

The `basicpkg` is a simple testing example to understand the basics of developing your first Python package. 



from multiply.by_three import multiply_by_three
from divide.by_three import divide_by_three

multiply_by_three(9)
divide_by_three(21)