<div>Hi</div>
<div><br clear="all">Is there anyway to print informtation from dictionaries better than this?:</div>
<div>&nbsp;</div>
<div>&gt;&gt;&gt; pairs = {&quot;Jon Moore&quot;: &quot;Tony Moore&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;Simon Nightingale&quot;: &quot;John Nightingale&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;David Willett&quot;: &quot;Bernard Willet&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;John Jackson&quot;: &quot;Stuart Jackson&quot;,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;James Southey&quot;: &quot;Richard Southey&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;William Forsythe&quot;: &quot;Shaun Forsythe&quot;}<br>&gt;&gt;&gt; print pairs.keys()<br>['David Willett', 'Jon Moore', 'John Jackson', 'Simon Nightingale', 'James Southey', 'William Forsythe']
<br>&gt;&gt;&gt; </div>
<div>&nbsp;</div>
<div>Is there no way to make it a nice list as I want to print the keys and values next to each other in a list such as:</div>
<div>&nbsp;</div>
<div>Jon Moore&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Tony Moore</div>
<div>Simon Nightingale&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; John Nightingale<br>David Willett&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Bernard Willet<br>John Jackson&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stuart Jackson<br>James Southey&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Richard Southey<br>William Forsythe&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Shaun Forsythe</div>

<div>&nbsp;</div>
<div>For anyone who is wondering, it is to show father/son pairs. Next is to add grandfathers *eek*.<br>-- <br>Best Regards<br><br>Jon Moore </div>