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)]