InterviewSolution
Saved Bookmarks
| 1. |
What Is Pickling And Unpickling? |
|
Answer» Pickle module accepts any PYTHON object and converts it into a STRING representation and dumps it into a file by USING dump function, this process is called pickling. While the process of RETRIEVING ORIGINAL Python objects from the stored string representation is called unpickling. Pickle module accepts any Python object and converts it into a string representation and dumps it into a file by using dump function, this process is called pickling. While the process of retrieving original Python objects from the stored string representation is called unpickling. |
|