python – 如何生成几个字母的所有可能排列的列表?

参见英文答案 > How to generate all permutations of a list in Python                                    30个
>            Randomize a string input into all possibilities                                    1个
所以我正在创建一个单词生成器,它接受几个输入的字母,将它们放在所有可能的位置,并将它们与文档匹配以查找单词.如果我接近这个错误请告诉我!如果不是我怎么能这样做?
谢谢

解决方法:

要生成给定字母列表的所有排列,请使用itertools模块.

import itertools 
for word in itertools.permutations( list_of_letters ):
   print ''.join(word)
上一篇:python – itertools:排列的笛卡尔乘积


下一篇:python – 2个列表中所有可能的字典组合排列