itertools.product确实生成所有可能的排列吗? [关闭]

问题描述 投票:1回答:1

这可能是一个愚蠢的问题,但是某些事情并没有加给我。

我的代码:

lowercase_letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
combos = list(product(lowercase_letters_ascii, repeat=3))

这将创建15625个组合。难道不应该有17576(26 ^ 3)个组合吗?我想念什么?

谢谢

python permutation product itertools
1个回答
2
投票

看哪!

>>> len(lowercase_letters)
25
>>> 25**3
15625

通过眼球,您的列表缺少字母“ j”。

© www.soinside.com 2019 - 2024. All rights reserved.