do you have to use pickle file in python code example
Example 1: create pickle file python
import pickle
file_name='my_file.pkl'
f = open(file_name,'wb')
pickle.dump(my_data,f)
f.close()
Example 2: pickle load pickle file
pickle_in = open("dict.pickle","rb")
example_dict = pickle.load(pickle_in)