-
-
Save mazhar266/820948f858ab2ca7f52f02a6f200f142 to your computer and use it in GitHub Desktop.
python 2 & 3 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.items())} | |
# filter by value | |
d3 = {k: v for k, v in d.items() if v in [2,3]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment