Skip to content

Instantly share code, notes, and snippets.

@manuphatak
Last active August 29, 2015 14:17
Show Gist options
  • Save manuphatak/e84a756614491a4d68b8 to your computer and use it in GitHub Desktop.
Save manuphatak/e84a756614491a4d68b8 to your computer and use it in GitHub Desktop.
# coding=utf-8
import collections
data = {'one': 1, 'two': 2, 'three': 3, 'a': 2}
sorted_data = collections.OrderedDict(sorted(data.items()))
print sorted_data
print sorted_data['three']
filtered_data = collections.OrderedDict(
filter(lambda (k, v): k is not 'three', sorted_data.items()))
print filtered_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment