What is the use of pickle module?
Answer:
The pickle module deals with binary files. It is used for serializing and de-serializing a python object structure.
Serializing is the process of transforming data or an object in memory (RAM) to a stream of bytes called byte streams.
De-serialization i s the inverse of the pickling process where a byte stream is converted back to a python object.