save_to_xlsx method

save_to_xlsx(self, path)

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


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

save_to_xlsx(self, stream)

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