diff --git a/README.md b/README.md index be84d18..3421d12 100644 --- a/README.md +++ b/README.md @@ -1390,12 +1390,12 @@ from itertools import * >>> chain([1, 2], [3, 4]) [1, 2, 3, 4] ->>> compress([1, 2, 3, 4], [True, False, 1, 0]) -[1, 3] - >>> # islice(, from_inclusive, to_exclusive) >>> islice([1, 2, 3, 4], 2, None) [3, 4] + +>>> compress([1, 2, 3, 4], [True, False, 1, 0]) +[1, 3] ``` ### Group by