1. If you have a numpy array, name arr 1, how would you access the data item at 5th index column and 2nd index row code example
Example: how to import numpy array in python
>>> import numpy as np
>>> a = np.array([0, 1, 2, 3])
>>> a
array([0, 1, 2, 3])