Numpy Part -2
Numpy array vs Python list
As NumPy array are c based it is faster than the python's list
Indexing in Numpy array
When there is no pattern and we cant use slicing, then we should go for fancy indexing
import numpy as np
my_list = [[1, 2, 3], [4,...
jeevanhenryd.hashnode.dev2 min read