I am learning the program written by other programmer. So I would like to view the structure of the pickled item. Since I need to know the structure of pickled data, I am trying to load pickle in Ipython using Spyder... e.g.:
import pickle
data1 = {'a': [1, 2.0, 3, 4+6j],
'b': ('string', u'Unicode string'),
'c': None}
selfref_list = [1, 2, 3]
#selfref_list.append(selfref_list)
output = open('data.pkl', 'wb')
# Pickle dictionary using protocol 0.
pickle.dump(data1, output)
# Pickle the list using the highest protocol available.
pickle.dump(selfref_list, output, -1)
output.close()
I would like to know the structure of the .pkl file pickled here.