[solved] Problem with findCells list structure

hello,
I want search inside a table, I use findCells, giving me back a list, if I search for the first item, I have only the search criterium, any help? I need a list of the cells as result.

my Python script:
t = op(‘clipList’)
result = t.findCells(‘mots’)
print(result)
resultPart = result[0]
print(resultPart)

the result:
python >>>
[type:Cell cell:(2, 3) owner:/clipList value:mots, type:Cell cell:(4, 4) owner:/clipList value:mots, type:Cell cell:(6, 4) owner:/clipList value:mots]
mots

Solved on facebook here the right script
myList = [cell.col for cell in t.findCells(‘mots’)]