SciPy - Sparse Matrices (scipy.sparse)
Identify the error in the following code snippet:
from scipy.sparse import csc_matrix import numpy as np arr = np.array([[1, 0], [0, 2]]) csc = csc_matrix(arr) print(csc.indeces)
