Python otrzymuje wszystkie kombinacje liczb n
n=len(lst)
itertools.product(lst,repeat=n)
Clumsy Capuchin
n=len(lst)
itertools.product(lst,repeat=n)