Writen by
Devil
3:17 AM
-
0
Comments
Python pickle module is used for serializing and de-serializing a Python object structure.Any object in Python can be pickled so that it can be saved on disk.
- It serializes the object first before writing it to file.
- It is a way to convert a python object (list, dict, etc.) into a character stream.
- It helps to reconstruct the object in another python script.
No comments
Post a Comment