SciPy - Sparse Matrices (scipy.sparse)
Given the following code, what will be the output of
print(csc_matrix.indptr)?
import numpy as np
from scipy.sparse import csc_matrix
arr = np.array([[0, 0, 3],
[4, 0, 0],
[0, 5, 6]])
csc_matrix = csc_matrix(arr)