“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 получить все комбинации списка

itertools.combinations(iterable, r)
Cautious Crossbill

Как получить все возможные комбинации в Python

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

Python возможные комбинации

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

Ответы похожие на “Python возможные комбинации”

Вопросы похожие на “Python возможные комбинации”

Больше похожих ответов на “Python возможные комбинации” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования