From 8eb80549eb10f0a9e6a4a30e3c3132473255335e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 23 Nov 2018 19:45:09 +0100 Subject: [PATCH] Itertools --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1fec376..3382b46 100644 --- a/README.md +++ b/README.md @@ -772,6 +772,7 @@ from itertools import * ```python >>> chain([1, 2], range(3, 5)) [1, 2, 3, 4] +``` #### Compress ```python