Chapter 10: Problem 36
What module do you import if you want to pickle objects?
Short Answer
Expert verified
Answer: Pickling in Python is the process of converting objects into a byte stream that can be stored or transmitted and later reconstructed back into the original object. The module used for pickling objects in Python is called 'pickle'. To import this module, you can use `import pickle`.