Answers for "print every possible combination of a list python"

6

get all combinations from two lists python

a = ["foo", "melon"]
b = [True, False]
c = list(itertools.product(a, b))
>> [("foo", True), ("foo", False), ("melon", True), ("melon", False)]
Posted by: Guest on April-21-2020
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
1

python get all combinations of list

itertools.combinations(iterable, r)
Posted by: Guest on January-29-2021

Code answers related to "print every possible combination of a list python"

Python Answers by Framework

Browse Popular Code Answers by Language