The process of pickling in Python includes ____________

Questions & AnswersCategory: Programming LanguageThe process of pickling in Python includes ____________
Geek Boy Staff asked 2 years ago

The process of pickling in Python includes ____________
a. conversion of a Python object hierarchy into byte stream
b. conversion of a datatable into a list
c. conversion of a byte stream into Python object hierarchy
d. conversion of a list into a datatable

1 Answers
Geek Boy Staff answered 2 years ago

a. conversion of a Python object hierarchy into byte stream
Explanation: Pickling is the process of sterilizing a Python object, that is, conversion of a byte stream into Python object hierarchy. The reverse of this process is known as unpickling.