Menu

gitpiper

pluck python Code Snippet in 2024

listdictionarybeginner

Last Updated: 13 July 2024

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]

python snippet similar to pluck For You in July 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️