On 2016-08-14 19:17, Atri Mahapatra wrote:
I have a list of dictionaries which look like this:
[{'Width': 100, 'Length': 20.0, 'Object': 'Object1'}, {'Width': 12.0, 'Length': 
40.0, 'Object': 'Object2'}...... so on till 10]

I would like to find the first index in the list of dictionaries whose length 
is greater than a particular value

f=lambda seq, m: [ii for ii in range(0, len(seq)) if seq[ii]['Length'] > m][0] 
and it throws an error

can  anyone suggest a way  to do it?

What is the error?

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to