

InterviewSolution
Saved Bookmarks
1. |
Which of the following functions can be used to find the protocol version of the pickle module currently being used?(a) pickle.DEFAULT(b) pickle.CURRENT(c) pickle.CURRENT_PROTOCOL(d) pickle.DEFAULT_PROTOCOL |
Answer» Correct answer is (d) pickle.DEFAULT_PROTOCOL The explanation is: The function pickle.DEFAULT_PROTOCOL can be used to find the protocol version of the pickle module currently being used by the system. |
|