“combinaison en mathématiques python” Réponses codées

combinaison 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

combinaison en mathématiques python

>>> from math import comb
>>> comb(10,3)
120
Blue-eyed Bear

Réponses similaires à “combinaison en mathématiques python”

Questions similaires à “combinaison en mathématiques python”

Plus de réponses similaires à “combinaison en mathématiques python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code