As a beginner, you usually write your application code in a single file. But soon, you’ll find that you have hundreds or thousands of lines of code in a file, which can become hard to manage.
Then, you break up your code into multiple files. In Python, each Python file is considered a module. A group of related modules is called a package.
Why does that m…


