0 votes
in Python by
Define pickling and unpickling in Python?

1 Answer

0 votes
by
Pickling in Python: The process in which the pickle module accepts various Python objects and converts into a string representation and dumps the file accordingly using dump function is called pickling.

Unpickling in Python: The process of retrieving actual Python objects from the stored string representation is called unpickling.

Related questions

0 votes
asked Oct 14, 2021 in Python by rajeshsharma
0 votes
asked May 24, 2020 in Python by SakshiSharma
...