<div>Hi</div>
<div><br clear="all">Is there anyway to print informtation from dictionaries better than this?:</div>
<div> </div>
<div>>>> pairs = {"Jon Moore": "Tony Moore",<br> "Simon Nightingale": "John Nightingale",<br> "David Willett": "Bernard Willet",<br> "John Jackson": "Stuart Jackson",
<br> "James Southey": "Richard Southey",<br> "William Forsythe": "Shaun Forsythe"}<br>>>> print pairs.keys()<br>['David Willett', 'Jon Moore', 'John Jackson', 'Simon Nightingale', 'James Southey', 'William Forsythe']
<br>>>> </div>
<div> </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> </div>
<div>Jon Moore Tony Moore</div>
<div>Simon Nightingale John Nightingale<br>David Willett Bernard Willet<br>John Jackson Stuart Jackson<br>James Southey Richard Southey<br>William Forsythe Shaun Forsythe</div>
<div> </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>