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 does != Mean in python 3?
What do you mean by list comprehension in python?
What is the output of this below query?
What command do we use to debug a python program?
Why we are using def keyword for method?
How many constructors can a class have?
Please explain in python what is slicing?
Explain me database connection in python flask?
How Python performs Compile-time and Run-time code checking?
In python, how you can randomize the items of a list in place ?
Which is faster python or php?
Is node better than python?
which of the following is an invalid statement?
What is purpose of __init__ in class ? Is it necessary to use __init__ while creating a class ?
What is a method call?