Tag view

#imports

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with imports

1 card

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