Back to search

Modules, imports, aliasing, and the module search path

Python resolves imports through its module search path, and you can import names directly or alias modules for readability.

Python Medium Theory

Modules, imports, aliasing, and the module search path

Python resolves imports through its module search path, and you can import names directly or alias modules for readability.

  • `import x` and `from x import y` behave differently
  • Aliases like `import numpy as np` are common
  • Search path includes the current project and installed packages

Modules, imports, aliasing, and the module search path