save_to_xlsx method

save_to_xlsx

Saves the memory data to the file path,the save format is xlsx.

def save_to_xlsx(self, path):
    ...
ParameterTypeDescription
pathstrThe file path to save.

save_to_xlsx

Saves the memory data to the sream,the save format is xlsx.

def save_to_xlsx(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream to save.

See Also