首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
Python- 求组合
Python- 求组合
tech
2024-11-06
3
from
itertools
import
combinations
def
set_combi
(
s
,
n
)
:
c
=
combinations
(
s
,
2
)
return
list
(
c
)
s
=
{
1
,
2
,
3
}
n
=
2
set_combi
(
s
,
n
)
[
(
1
,
2
)
,
(
1
,
3
)
,
(
2
,
3
)
]
转载请注明原文地址:https://tech.qufami.com/read-18969.html
最新回复
(
0
)