Answers for "python combination of all elements in groups of 5"

0

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)
Posted by: Guest on April-05-2021

Code answers related to "python combination of all elements in groups of 5"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language