当前位置:Gxlcms > Python > Python的库函数里有没有现成的全排列函数?

Python的库函数里有没有现成的全排列函数?

时间:2021-07-01 10:21:17 帮助过:10人阅读

回复内容:

这个就行
>>> for i in itertools.permutations('abcd',4):
print ''.join(i) itertools里就有…全排列就靠permutation了,参数是个可迭代量,返回值是个迭代器。

当然也有部分排列、组合、部分组合之类的。
print list(itertools.combinations(['a','b','c'],2))
[('a', 'b'), ('a', 'c'), ('b', 'c')]
在itertools模块 里面
product函数 我做个笔记,差点又忘了,那些用模块的啊,真是图样图森破
全排列可以这样那个写
[[x,y,z] for x in [1,2,3] for y in ['a','b','c'] for z in ['o','r','z']]

人气教程排行