小编典典

哪个itertools生成器不跳过任何组合?

python

当我运行此代码时,我没有得到3个字符的所有可能组合:

def comb(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)
def start():
    for x in comb("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12234567890!@#$%^&*?,()-=+[]/;",3):
        print x

相反,它跳过了一些。当我重复字符3次时,我得到了所需的所有组合,但又得到了多次。这花费了三倍的时间,这不是我想要的。我将要计算数百万种组合,因此我需要知道一种替代重复字符的方法。


阅读 175

收藏
2021-01-20

共1个答案

小编典典

您正在寻找itertools.product(characters, repeat = 3)

参见itertools.product文档。

>>> ' '.join(''.join(x) for x in itertools.product('abcd', repeat = 2))
aa ab ac ad ba bb bc bd ca cb cc cd da db dc dd
2021-01-20