Possible Duplicate:
Sorting a dictionary having keys as string of numbers in python
I want to sort the dictionary of list based on value of keys. This is how it looks now
{'217': ['109'],
'214': ['111', '156', '159'],
'215': ['111'],
'219': ['111', '114', '212', '214’]}
But I want something like
{'214': ['111', '156', '159'],
'215': ['111'],
'217': ['109'],
'219': ['111', '114', '212', '214’]}
Any suggestions?Thanks