Update snippet descriptions
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
---
|
||||
title: every
|
||||
tags: list,function,intermediate
|
||||
tags: list,intermediate
|
||||
---
|
||||
|
||||
Returns `True` if the provided function returns `True` for every element in the list, `False` otherwise.
|
||||
Checks if the provided function returns `True` for every element in the list.
|
||||
|
||||
- Use `all()` in combination with `map` and `fn` to check if `fn` returns `True` for all elements in the list.
|
||||
- Use `all()` in combination with `map()` and `fn` to check if `fn` returns `True` for all elements in the list.
|
||||
|
||||
```py
|
||||
def every(lst, fn=lambda x: x):
|
||||
def every(lst, fn = lambda x: x):
|
||||
return all(map(fn, lst))
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user