> import scipy > import numpy as np > smat_csr = scipy.sparse.csr_matrix([[0,0,1],[0,1,0],[0,0,0]]) > print(smat_csr) (0, 2) 1 (1, 1) 1 > print(sm