Update explanation for All-true-ation

#255
This commit is contained in:
Chris Milson 2021-02-18 19:05:40 +09:00
parent 70c03e9801
commit f0bd1cb481
1 changed files with 2 additions and 2 deletions

4
README.md vendored
View File

@ -1273,8 +1273,8 @@ Why's this True-False alteration?
```
- `all([])` returns `True` since the iterable is empty.
- `all([[]])` returns `False` because `not []` is `True` is equivalent to `not False` as the list inside the iterable is empty.
- `all([[[]]])` and higher recursive variants are always `True` since `not [[]]`, `not [[[]]]`, and so on are equivalent to `not True`.
- `all([[]])` returns `False` because the passed array has one element, `[]`, and in python, an empty list is falsy.
- `all([[[]]])` and higher recursive variants are always `True`. This is because the passed array's single element (`[[...]]`) is no longer empty, and lists with values are truthy.
---