From 6c0d1b33251627c4eb0b1b1ef4055af7ed7d3017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 23 Nov 2018 19:42:01 +0100 Subject: [PATCH] Itertools --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2fd5f22..1fec376 100644 --- a/README.md +++ b/README.md @@ -772,7 +772,6 @@ from itertools import * ```python >>> chain([1, 2], range(3, 5)) [1, 2, 3, 4] -``` #### Compress ```python @@ -780,7 +779,7 @@ from itertools import * ['a', 'c'] ``` -### Count +#### Count ```python >>> i = count(5, 2) >>> next(i), next(i)