Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:43:50 +03:00
parent ab1ea476c5
commit a5ca5190e5
169 changed files with 0 additions and 626 deletions

26
python/snippets/pluck.md Normal file
View File

@ -0,0 +1,26 @@
---
title: Pluck values from list of dictionaries
type: snippet
tags: [list,dictionary]
cover: succulent-9
dateModified: 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`.
```py
def pluck(lst, key):
return [x.get(key) for x in lst]
```
```py
simpsons = [
{ 'name': 'lisa', 'age': 8 },
{ 'name': 'homer', 'age': 36 },
{ 'name': 'marge', 'age': 34 },
{ 'name': 'bart', 'age': 10 }
]
pluck(simpsons, 'age') # [8, 36, 34, 10]
```