_______ is a built-in Python function that dynamically loads a module into the current namespace.

  • import
  • include
  • load
  • require
The import statement is used to dynamically load a module into the current Python namespace. It allows you to access functions, classes, and variables defined in the imported module. This dynamic loading is crucial for code modularity and reusability, enabling you to use code from different modules in your Python programs.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *