gpt4 book ai didi

python - python中所有可能的组合

转载 作者:行者123 更新时间:2023-12-03 19:42:23 25 4
gpt4 key购买 nike

我正在寻找 python 中针对此问题的所有可能组合:

list1 = ['M','W','D']
list2 = ['y','n']

我想要的是:
[[('M', 'y'), ('W', 'n'), ('D', 'n')], [('M', 'y'), ('D', 'n'), ('W', 'n'), ....

我需要像这样拥有 M、W、D 的所有可能性:
M W D

y n y

y y y

y y n

y n n

n y y

n n y

. . .

我试过:
import itertools
list1 = ['M','W','D']
list2 = ['y','n']
all_combinations = []
list1_permutations = itertools.permutations(list1, len(list2))
for each_permutation in list1_permutations:
zipped = zip(each_permutation, list2)
all_combinations.append(list(zipped))
print(all_combinations)

我得到:
[[('M', 'y'), ('W', 'n')], [('M', 'y'), ('D', 'n')], [('W', 'y'), ('M', 'n')], [('W', 'y'), ('D', 'n')], [('D', 'y'), ('M', 'n')], [('D', 'y'), ('W', 'n')]]

这绝对不是我要找的,因为我需要将 list1 的所有元素显示到同一个列表中,并与 list2 的元素组合。

我不确定列表是否适合这个问题,但我需要的是 'D'、'W'、'M' 和 'y'、'n' 的所有可能性

最佳答案

您可以使用 itertools.product生成 list2 的所有此类组合长度为 list1 的项目,然后压缩 list1对于输出的每个组合:

[list(zip(list1, c)) for c in itertools.product(list2, repeat=len(list1))]

这将返回:
[[('M', 'y'), ('W', 'y'), ('D', 'y')],
[('M', 'y'), ('W', 'y'), ('D', 'n')],
[('M', 'y'), ('W', 'n'), ('D', 'y')],
[('M', 'y'), ('W', 'n'), ('D', 'n')],
[('M', 'n'), ('W', 'y'), ('D', 'y')],
[('M', 'n'), ('W', 'y'), ('D', 'n')],
[('M', 'n'), ('W', 'n'), ('D', 'y')],
[('M', 'n'), ('W', 'n'), ('D', 'n')]]

关于python - python中所有可能的组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61640378/

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