diff --git a/README.md b/README.md index 10d4f02..cf8cad5 100644 --- a/README.md +++ b/README.md @@ -501,7 +501,7 @@ for i in range(10): ```python from functools import reduce = map(lambda x: x + 1, range(10)) # (1, 2, ..., 10) - = filter(lambda x: x > 5, range(10)) # (6, 7, ..., 9) + = filter(lambda x: x > 5, range(10)) # (6, 7, 8, 9) = reduce(lambda out, x: out + x, range(10)) # 45 ```