From f2f1993ceffeebdd28b8e99fb83c6361c40b109f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 23 Nov 2018 18:56:17 +0100 Subject: [PATCH] Itertools --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 0d3e921..2fd5f22 100644 --- a/README.md +++ b/README.md @@ -761,7 +761,6 @@ from itertools import * >>> permutations('abc', 2) [('a', 'b'), ('a', 'c'), ('b', 'a'), ('b', 'c'), ('c', 'a'), ('c', 'b')] -``` >>> product('ab', [1, 2]) [('a', 1), ('a', 2), ('b', 1), ('b', 2)]