From f9b1d3a5c7f11b0c8276e84e19909282ad5e966c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 04:17:50 +0100 Subject: [PATCH] Islice --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1077554..981f0ff 100644 --- a/README.md +++ b/README.md @@ -1027,7 +1027,7 @@ from itertools import * >>> compress('abc', [True, 0, 1]) ['a', 'c'] ->>> # islice(, from_inclusive, to_exclusive) +>>> # islice(, from_inclusive, to_exclusive) >>> islice([1, 2, 3], 1, None) [2, 3]