Computer Science, asked by MOHITMODI11, 4 months ago

Which module is required to use the
built in function dump()?
math
pickle
flush
numpy​

Answers

Answered by Anonymous
7

Answer:

This module contains built-in functions that are automatically available in all Python modules. You usually don't have to import this module; Python does that for you when necessary.

Explanation:

Answered by qwcricket10
0

The pickle module is required to use the built-in dump() function.

  • The function dump is used for storing and converting a string object to a JSON object.
  • This function helps the storing of python objects in a file.
  • The pickle module helps the conversion of objects.
  • The dump() in the pickle module helps the conversion of python object to a binary format.
  • The pickle module is the one required for the dump function.
Similar questions