KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

Which statement is used to include a package or module in a program?

  1. include
  2. import
  3. export
  4. None of these

Python Modules

3 Likes

Answer

import

Reason — The import statement can be used to add a module in a program. We can access the definitions inside it by using the dot operator.

Answered By

3 Likes


Related Questions