“Python mögliche Kombinationen” Code-Antworten

Kombination Python

# 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 erhalten Sie alle Kombinationen der Liste

itertools.combinations(iterable, r)
Cautious Crossbill

Wie man alle möglichen Kombinationen in Python bekommt

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

Python mögliche Kombinationen

import math
n=7
k=5
print(math.comb(n, k))
Nazário

Ähnliche Antworten wie “Python mögliche Kombinationen”

Fragen ähnlich wie “Python mögliche Kombinationen”

Weitere verwandte Antworten zu “Python mögliche Kombinationen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen