from aspose.cells import Workbook

#  For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
# Load your source ods file
workbook = Workbook("book1.ods")
# Save as xlsx file
workbook.save("ods_out.xlsx")
# Load your source sxc file
workbook = Workbook("book1.sxc")
# Save as xls file
workbook.save("sxc_out.xls")
# Load your source fods file
workbook = Workbook("book1.fods")
# Save as xlsb file
workbook.save("fods_out.xlsb")