

InterviewSolution
Saved Bookmarks
1. |
The pickle module defines ______ exceptions and exports _______ classes.(a) 2, 3(b) 3, 4(c) 3, 2(d) 4, 3 |
Answer» The correct option is (c) 3, 2 The best I can explain: The pickle module defines three exceptions, namely, pickle.PickleError, pickle.PicklingError, pickle.UnpickleError and exports two classes, namely, pickle.Pickler and pickle.Unpickler. |
|