Robotics & Artificial Intelligence

Which keyword in Python is used to import a module?

  1. include
  2. input
  3. import
  4. system

Getting Started

2 Likes

Answer

import

Reason — In Python, the import keyword is used to import modules at the start of a program so that the functions and features of those modules can be used.

Answered By

3 Likes


Related Questions