Answers for "calculate number of combination of a list of 3 items python"

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 "calculate number of combination of a list of 3 items python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language