Iain King wrote:
> Short answer - you can't.  Dictionaries aren't sequential structures,
> so they have no sorted form.  You can iterate through it in a sorted
> manner however, as long as you keep your list of keys:
>
> keys.sort()
> for k in keys:
>     print d[k]
> 
> Iain

duh!....thanks.

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

Reply via email to