Newbie question on dictionary!!!

Tom B. sbabbitt at commspeed.net
Thu Aug 26 21:33:32 EDT 2004


"Balaji" <balaji at email.arizona.edu> wrote in message
news:494182a9.0408261150.a4c767f at posting.google.com...
> Hello everybody...
>
> I want to ask a simple question.
>
> Suppose I have an list say g=['a','b','c','d']
>
> and I have an dictionary say k={'b':20,'a':10}
>
> Now I want to sort this dictionary on the basis of the list and if it
> doesnt find any of the element in the list then I wud like to replace
> it with zero..
>
> so I would like to modify k into {'a':10,'b':20,'c':0,'d':0}
>
> I have tried all the built in associated with dict and lists but was
> not able to come up with an solution...
>
> Can anyone help...

Dictionarys are not sortable but you can easaly acess the values in an
sorted order,

dict = {'a':123,'c':456,'b':789}

 l = dict.keys()
 l.sort()
 for i in l:
     print dict[i]

Tom





More information about the Python-list mailing list