“Como obter todas as combinações possíveis no Python” Respostas de código

Python combinado

# 1. Print all combinations 
from itertools import combinations

comb = combinations([1, 1, 3], 2)
print(list(combinations([1, 2, 3], 2)))
# Output: [(1, 2), (1, 3), (2, 3)]

# 2. Counting combinations
from math import comb
print(comb(10,3))
#Output: 120
BreadCode

Python Obtenha todas as combinações da lista

itertools.combinations(iterable, r)
Cautious Crossbill

Como obter todas as combinações possíveis no Python

all_combinations = [list(zip(each_permutation, list2)) for each_permutation in itertools.permutations(list1, len(list2))]
Open Opossum

Respostas semelhantes a “Como obter todas as combinações possíveis no Python”

Perguntas semelhantes a “Como obter todas as combinações possíveis no Python”

Mais respostas relacionadas para “Como obter todas as combinações possíveis no Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código