0 votes
in Python by
What Is Pickling And Unpickling in Python?

1 Answer

0 votes
by

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.

Related questions

0 votes
asked Oct 12, 2021 in Python by rajeshsharma
0 votes
asked Sep 21, 2021 in Python by sharadyadav1986
...