15 Dec
2005
15 Dec
'05
3 p.m.
David H wrote:
# python script # input: a tuple named tup of index items to include in list of lists, eg (1,3) and the list of lists #example input: listoflists = [[61282125371L, 1, 6, 0], [61282125379L, 1, 6, 0], [61282825240L, 6, 6, 0]] #example tup: (1,3)
ret = [] for i in range(len(listoflists)): if i in tup: ret.append(x[i]) return ret
Hmmm, I'd hypothesise that whatever is returning that list of lists is what needs to change :-S Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk