Python Pandas
NumPy is a famous Python library.
NumPy is used to work with arrays.
NumPy stands for Numerical Python.
Example
NumPy Array
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
print(arr)
print(type(arr))
© copyright 2021. All rights reserved.