Files
30-seconds-of-code/snippets/python/s/pluck.md
2023-05-07 16:07:29 +03:00

628 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Pluck values from list of dictionaries snippet python
list
dictionary
succulent-9 2020-10-22T10:09:44+03:00

Converts a list of dictionaries into a list of values corresponding to the specified key.

  • Use a list comprehension and dict.get() to get the value of key for each dictionary in lst.
def pluck(lst, key):
  return [x.get(key) for x in lst]
simpsons = [
  { 'name': 'lisa', 'age': 8 },
  { 'name': 'homer', 'age': 36 },
  { 'name': 'marge', 'age': 34 },
  { 'name': 'bart', 'age': 10 }
]
pluck(simpsons, 'age') # [8, 36, 34, 10]