KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

A module in Python is

  1. the collection of Python code in a file.
  2. the collection of variables.
  3. a function.
  4. None of these

Python Modules

2 Likes

Answer

the collection of Python code in a file.

Reason — A module is a simple Python file that can contain functions, variables, and other objects.

Answered By

3 Likes


Related Questions