我尝试用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:没有名为“莳萝”的模块