Python Dapatkan semua kombinasi N angka
n=len(lst)
itertools.product(lst,repeat=n)
Clumsy Capuchin
n=len(lst)
itertools.product(lst,repeat=n)