pickle.dumps(obj, protocol=None, *, fix_imports=True)
Return the pickled representation of the object as a bytes
object, instead of writing it to a file.
Arguments protocol and fix_imports have the same meaning as in dump()
.
pickle.dumps(obj, protocol=None, *, fix_imports=True)
Return the pickled representation of the object as a bytes
object, instead of writing it to a file.
Arguments protocol and fix_imports have the same meaning as in dump()
.
Please login to continue.