My code is:
import _pickle
with open('items_10000_matrix.pickle', 'rb') as f:
data_new = _pickle.load(f)
But an error occurs:
UnicodeDecodeError: 'ascii' codec can't decode byte 0x80 in position 212: ordinal not in range(128)
I am using windows 10 + python 3.5 with VS tools for python.