What are Pickling and Unpickling?
Naveen
- 0
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
Spread the knowledge