Python bekommt alle Kombinationen von N -Zahlen
n=len(lst)
itertools.product(lst,repeat=n)
Clumsy Capuchin
n=len(lst)
itertools.product(lst,repeat=n)