For the following code, I am getting the error I have put in title:
import scipy.io as sio
import numpy as np
temp = np.load('temp.npy')
sio.savemat('final.mat',temp)
Although AttributeError is a common error in python, I did not find anything useful for 'items' as mentioned in the title. How can we fix this?