SciPy - Sparse Matrices (scipy.sparse)
Identify the issue in this code:
from scipy.sparse import csr_matrix matrix = csr_matrix([[0, 0], [0, 0]]) print(matrix.data[0])
