The pickle module accepts any Python object and converts it into a string representation and dumps it using the dump function this process is called pickling while the process of retrieving original Python objects from the stored string representation is called unpicking
Home What is pickling and Unpickling?