I am trying to read a matlab file with the following code
import scipy.io mat = scipy.io.loadmat(\'test.mat\')
and it gives me the followin
Try using h5py module
import h5py with h5py.File('test.mat', 'r') as f: f.keys()