What are modules in Python?

Modules

The module is a file containing code written by somebody else (usually) which can be imported and used in our programs


Pip

Pip is a package manager for python, you can use pip for installing modules in python.

Types of modules 

There are two types of modules
  1. Built-in (preinstalled)
  2. external (should be installed using pip)

Also Read

Post a Comment