Python obtient toutes les combinaisons de n nombres
n=len(lst)
itertools.product(lst,repeat=n)
Clumsy Capuchin
n=len(lst)
itertools.product(lst,repeat=n)