如何将dill.dump和dill.load从python2转换为python3?

时间:2019-11-11 14:23:33

标签: python-3.x

我尝试用python3导入莳萝,并得到ModuleNotFoundError:没有名为“莳萝”的模块。我需要将代码从python2转换为python3。请告知。

def save_d(object, filename, protocol=-1):
  file = gzip.GzipFile(filename, 'wb')
  dill.dump(object, file, protocol)
  file.close()

def load_d(filename):
  file = gzip.GzipFile(filename, 'rb')
  object = dill.load(file)
  file.close()
  return object

ModuleNotFoundError:没有名为“莳萝”的模块

0 个答案:

没有答案