“комбинированный питон” Ответ

комбинированный питон

# 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

комбинации питона

import itertools
def subs(l):
    res = []
    for i in range(1, len(l) + 1):
        for combo in itertools.combinations(l, i):
            res.append(list(combo))
    return res
Ill Ibex

Функция комбинаций Python

def combinations(iterable, r):
    pool = tuple(iterable)
    n = len(pool)
    for indices in permutations(range(n), r):
        if sorted(indices) == list(indices):
            yield tuple(pool[i] for i in indices)
Homely Hamster

Ответы похожие на “комбинированный питон”

Вопросы похожие на “комбинированный питон”

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

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

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