SciPy - Integration with Scientific Ecosystem
What is the issue with this code?
from scipy.sparse import save_npz, load_npz
matrix = [[0, 1], [2, 0]]
save_npz('matrix.npz', matrix)
loaded = load_npz('matrix.npz')