Created
June 13, 2013 20:05
-
-
Save 89465127/5776892 to your computer and use it in GitHub Desktop.
python filter a dictionary by keys or values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d = {1:11, 2:22, 3:33} | |
# filter by key | |
d2 = {k : v for k,v in filter(lambda t: t[0] in [1, 3], d.iteritems())} | |
# filter by value | |
d3 = {k : v for k,v in d.iteritems() if k in [2,3]} |
can use this for value search
d3 = {k : v for k,v in filter(lambda t: t[1] in [22, 33], d.iteritems())}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@fbens
iteritems
is gone if you're using python 3. tryd.items()
instead