Robotics & Artificial Intelligence

The keyword used to include a package or module in a Python program is:

  1. export
  2. include
  3. collect
  4. import

Python Modules

1 Like

Answer

import

Reason — In Python, the keyword import is used to include a module or package in a program so that its functions and features can be used.

Answered By

2 Likes


Related Questions