What are Pickling and Unpickling?

Pickling Converting a Python object hierarchy to a byte stream is called pickling. Pickling is also referred to as serialization. Unpickling Converting a byte stream to a python object hierarchy is called unpickling. Unpickling is also referred to as deserialization. Popular Posts

Read More