Created
June 18, 2019 11:46
-
-
Save includeamin/b0f6d3ba620eabdb67623726cefd9e7c to your computer and use it in GitHub Desktop.
Search in list of dictionary
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
data = [{"id":2,"f":3}, | |
{"id":3,'f':4}] | |
a = next(item for item in data if item["id"]==2) | |
print a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment