Get the string value of a cell in the Datasheet
Cell(Row, Col)
The string in cell
EX1
#Create Book1 with one sheet with 3column and 5row, set some numbers in sheet import PyOrigin wks=PyOrigin.FindWorksheet('Book1') #Get the string in cell print('the number in col(3)[2] is %s' % wks.TCell(1,2))