how to read a pickle file python code example
Example 1: read pickle file
with open('filename', 'rb') as f:
x = pickle.load(f)
Example 2: create pickle file python
import pickle
file_name='my_file.pkl'
f = open(file_name,'wb')
pickle.dump(my_data,f)
f.close()