Answer Posted / chaitanya
pickle is a standard module which serializes & de-serializes a python object structure.
pickle module accepts any python object converts it into a string representation & dumps it into a file(by using dump() function) which can be used later, process is called pickling. Whereas unpickling is process of retrieving original python object from the stored string representation for use.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the output of the following code and why?
Why cannot lambda forms in Python contain statements?
Python read a single character from the user?
What is __ init __( self in python?
Can a class run without constructor?
Differentiate between .py and .pyc files?
How do I run a py file in python shell?
What does exit () do in python?
How do you use return in python?
Which is best python or r?
What is slug in python?
Explain the difference between append vs extend in list?
What is the best code you can write to swap two numbers?
Why do you use abstract classes?
What is a function call or a callable object in python?