Concept Flow - Why modules are used
Start: Write code in one file
Code grows bigger
Problems: Hard to manage, name conflicts
Split code into modules
Each module has own code and names
Import needed parts in main file
Code is organized, reusable, and clear
This flow shows how code starts simple, grows complex, then is split into modules to keep it organized and avoid conflicts.