Hi,<br>
<br>
&gt;&gt;&gt; l<br>
[{'last': 'Bar', 'first': 'Foo'}, {'last': 'Bar', 'first': 'Foo'},
{'last': 'Bar', 'first': 'Foo'}, {'last': 'Bar', 'first': 'Foo'}]<br>
<br>
<br>
This is how I imagine it: <br>
<br>
for i in l:<br>
&nbsp;&nbsp;&nbsp; for j in l[i]:<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; for k in l[i][j]:<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; print k.get('first')<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print k.get('last')<br>
<br>
Is there a short and sweet way of doing this (that actually works). <br>
<br>
Luis.<br>