“Itertools Python Install” Ответ

Установите итул

sudo pip3 install more-itertools
Nels

Itertools Python Install

itertools.permutations()
Felipe Ortiz

Внедрение комбинаций Intertools

def combinations(iterable, r):
    # combinations('ABCD', 2) --> AB AC AD BC BD CD
    # combinations(range(4), 3) --> 012 013 023 123
    pool = tuple(iterable)
    n = len(pool)
    if r > n:
        return
    indices = range(r)
    yield tuple(pool[i] for i in indices)
    while True:
        for i in reversed(range(r)):
            if indices[i] != i + n - r:
                break
        else:
            return
        indices[i] += 1
        for j in range(i+1, r):
            indices[j] = indices[j-1] + 1
        yield tuple(pool[i] for i in indices)
Relieved Raccoon

Ответы похожие на “Itertools Python Install”

Вопросы похожие на “Itertools Python Install”

Больше похожих ответов на “Itertools Python Install” по Python

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

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