...

/

The Combinatoric Generators

The Combinatoric Generators

Let's learn about iterators that can be used to create combinations and permutations of data.

The itertools library contains four iterators that can be used for creating combinations and permutations of data. We will be covering these fun iterators in this lesson.

combinations(iterable, r)

If we have the need to create combinations, Python has we covered with itertools.combinations. What combinations allows you to do is create an iterator from an iterable that is some length long. Let’s take a look:

Press + to interact
from itertools import combinations
print (list(combinations('WXYZ', 2)))

When we run this code, we will notice that combinations return tuples. To make ...