I have a list of iterators, such as l = [range(1), range(2), range(3)]
and each iterator iterates over the possibilities that could be in that slot.
However, I don't know how long the list is going to be.
In this case, to get what I want, I can easily do [[val1, val2, val3] for val1 in l[0] for val2 in l[1] for val3 in l[2]]
.
I've been looking a lot at itertools, and couldn't see anything that matched this pattern.
What function can take in a list of iterators and generate a list of all the possibilities for lists where each value in the list is a value of one of the generators in the slots?