Concept Flow - Import statement behavior
Start program
Encounter import statement
Check if module is loaded
Use cached
Access module contents
Continue program execution
When Python sees an import, it checks if the module is already loaded. If yes, it uses the cached module. If not, it loads the module, then continues.