combination of all the possible element in list code example
Example: how to find a combination of all elements in a python list
import itertools
stuff = [1, 2, 3]
for L in range(0, len(stuff)+1):
for subset in itertools.combinations(stuff, L):
print(subset)