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 :
- Built-in Python Standard Library.
- 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.
- math.
- os.
- datetime.
- random.
- 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)