Imports
Importing elements from another Python module makes them available in the current context (usually a script or a REPL-session). This allows for code to be split into several segments to keep them invididually self-contained, reusable and maintainable.
Use case¶
Make a separate module or elements of a module available in the current context.