“Все возможные комбинации в 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 itertools

list1 = list(range(5, 10))
list2 = [1, 2, 3]
list = [list1, list2]

combination = [p for p in itertools.product(*list)]
print(combination)
PythonCopy
anas ben rais

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

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

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

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

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