Learn How to Organise Your Python Code with Modules and Packages in 5 Minutes

With easy to understand examples!

Erdem Isbilen
Towards Data Science
5 min readJul 18, 2020

--

Photo by Zach Kadolph on Unsplash

When your Python code grows in size, most probably it becomes unorganised over time. Keeping your code in the same file as it grows makes your code difficult to maintain. At this point, Python modules and packages help you to organize and group your content by using files and…

--

--