from aspose.cells import Workbook

#  For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
#  The path to the documents directory.
dataDir = RunExamples.GetDataDir(".")
#  Instantiating a Workbook object
workbook = Workbook(dataDir + "book1.xls")
#  Using the Sheet 1 in Workbook
worksheet = workbook.worksheets[0]
#  Accessing a cell using its row and column
cell = worksheet.cells.get(0, 0)
value = str(cell.value)
print(value)