NumPy (numerical Python) is a library that consists of multidimensional array objects and a set of routines for processing them. NumPy allows you to perform mathematical and logical operations on arrays. This tutorial walks you through the fundamentals of NumPy, including its design and architectue. It also covers array features, indexing types, and other topics.
Note: Data Science: is a branch of computer science where we study how to store, use and analyze data for deriving information from it.
NumPy is a Python library that is partially written in Python, but the majority of the elements that require fast computation are written in C or C++.
!pip install numpy
import numpy
NumPy is usually imported under the np alias.
import numpy as np
import platform
import numpy as np
print('Python version: ' + platform.python_version())
print('Numpy version: ' + np.__version__)