Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Ordered dictionary (See related posts)

This is part of the pythonutils package.
od = OrderedDict()
od['key1'] = 'value 1'
od['key2'] = 'value 2'
print od
{'key1': 'value 1', 'key2': 'value 2'}

print od.sequence
['key1', 'key2']
od.sequence.reverse()
print od
{'key2': 'value 2', 'key1': 'value 1'}
print od.sequence
['key2', 'key1']

This dict keeps its insertion order and you can do other
manipulations. See more details here

You need to create an account or log in to post comments to this site.


Click here to browse all 5141 code snippets

Related Posts