gpt4 book ai didi

python - itertools.permutations 的无序版本

转载 作者:太空宇宙 更新时间:2023-11-03 14:12:19 36 4
gpt4 key购买 nike

以下程序使用 itertools.permutations 从列表中构造一个 URL。

def url_construct_function():
for i in range(1, len(samplelist)):
for item in list(permutations(samplelist, i)):
  1. 假设示例列表中有 3 个项目:a,b,c
  2. itertools.permutations 很好地描述了各种可能的有序组合
    • 一个
    • b
    • c
    • a,b
    • a,c
    • b,a
    • b,c
    • c,a
    • c,b

我想让程序明白 a,bb,a 是一样的。

最佳答案

itertools.combinations 的工作方式与 itertools.permutations 类似,可以满足您的需求(顾名思义)

from itertools import combinations
...
for item in list(combinations(samplelist, i)):
...
a
b
c
a, b
a, c
b, c

与排列不同,在组合中,顺序无关紧要。所有整齐地覆盖在 docs 中.

关于python - itertools.permutations 的无序版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36251622/

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