Skip to content

Instantly share code, notes, and snippets.

@includeamin
Last active March 10, 2019 15:41
Show Gist options
  • Save includeamin/157b55a02653a53f1d541faab4610001 to your computer and use it in GitHub Desktop.
Save includeamin/157b55a02653a53f1d541faab4610001 to your computer and use it in GitHub Desktop.
Find value of key in list of dictionary
def find_dic_in_list(list,key):
for (index, d) in enumerate(list):
if dict(d).keys().__contains__(key):
return d[key]
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment