gpt4 book ai didi

Python使用itertools模块实现排列组合功能示例

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 29 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Python使用itertools模块实现排列组合功能示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了Python使用itertools模块实现排列组合功能。分享给大家供大家参考,具体如下:

1、笛卡尔积:itertools.product(*iterables[, repeat]) 。

直接对自身进行笛卡尔积:

?
1
2
3
import itertools
for i in itertools.product( 'ABCD' , repeat = 2 ):
   print (' '.join(i),end=' ')

输出结果:

AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD 。

print (''.join(i))这个语句可以让结果直接排列到一起 。

end=' '可以让默认的输出后换行变为一个空格 。

两个元组进行笛卡尔积:

?
1
2
3
4
5
6
import itertools
a = ( 1 , 2 , 3 )
b = ( 'A' , 'B' , 'C' )
c = itertools.product(a,b)
for i in c:
   print (i,end = ' ' )

输出结果:

(1, 'A') (1, 'B') (1, 'C') (2, 'A') (2, 'B') (2, 'C') (3, 'A') (3, 'B') (3, 'C') 。

2、排列:itertools.permutations(iterable[, r]) 。

?
1
2
3
import itertools
for i in itertools.permutations( 'ABCD' , 2 ):
   print (' '.join(i),end=' ')

输出结果:

AB AC AD BA BC BD CA CB CD DA DB DC 。

3、组合:itertools.combinations(iterable, r) 。

?
1
2
3
import itertools
for i in itertools.combinations( 'ABCD' , 3 ):
   print (''.join(i))

输出结果:

ABC ABD ACD BCD 。

4、组合(包含自身重复):itertools.combinations_with_replacement(iterable, r) 。

?
1
2
3
import itertools
for i in itertools.combinations_with_replacement( 'ABCD' , 3 ):
   print (' '.join(i),end=' ')

输出结果:

AAA AAB AAC AAD ABB ABC ABD ACC ACD ADD BBB BBC BBD BCC BCD BDD CCC CCD CDD DDD 。

希望本文所述对大家Python程序设计有所帮助.

原文链接:https://blog.csdn.net/specter11235/article/details/71189486 。

最后此篇关于Python使用itertools模块实现排列组合功能示例的文章就讲到这里了,如果你想了解更多关于Python使用itertools模块实现排列组合功能示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com