DEV Community

Cover image for LIBRARIES IN PYTHON
Vinoth Kumar
Vinoth Kumar

Posted on

LIBRARIES IN PYTHON

LIBRARIES IN PY :
A group of modules that contain functions, classes and methods to perform common tasks like data manipulation, math operations, web scraping and more.

TYPES OF LIBRARIES :

  1. Built-in Python Standard Library.
  2. External Python Libraries.

BUILD-IN PY LIBRARIES :

A collection of modules that come bundled with every Python installation, we don’t need to install anything separately.

  1. math.
  2. os.
  3. datetime.
  4. random.
  5. json.

EXTERNAL PY LIBRARIES :

External libraries are not included with Python by default. You can install them easily using the pip package manager.

NumPy.
Pandas.
Matplotlib.
SciPy.
TensorFlow.

Top comments (0)