码迷,mamicode.com
首页 > 编程语言 > 详细

python 实现排列组合

时间:2019-10-24 19:43:25      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:port   返回   python3   color   style   iter   tool   bar   输出   

对于一个数组(或任何可以迭代的元素集),可以通过itertools包中的permutationscombinations轻松完成排列,组合

python3中permutationscombinations返回的是一个迭代器,可以通过list转化为一个列表,方便我们进一步处理

具体用法看下面的例子

import itertools
from itertools import permutations, combinations

print("Permutations of ‘bar‘")
print(list(permutations(bar)))

#输出结果
#Permutations of ‘bar‘
#[(‘b‘, ‘a‘, ‘r‘), (‘b‘, ‘r‘, ‘a‘), (‘a‘, ‘b‘, ‘r‘), (‘a‘, ‘r‘, ‘b‘), (‘r‘, ‘b‘, ‘a‘), (‘r‘, ‘a‘, ‘b‘)]

print("Combinations of 2 letters from ‘bar‘")
print(list(combinations(bar, 2)))

#输出结果
#Combinations of 2 letters from ‘bar‘
#[(‘b‘, ‘a‘), (‘b‘, ‘r‘), (‘a‘, ‘r‘)]

python 实现排列组合

标签:port   返回   python3   color   style   iter   tool   bar   输出   

原文地址:https://www.cnblogs.com/RB26DETT/p/11734236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!