gpt4 book ai didi

Python 迭代工具

转载 作者:太空宇宙 更新时间:2023-11-04 08:28:30 25 4
gpt4 key购买 nike

我有 4 个包含不同数量元素的列表。我想输出单个列表元素的 3 个项目的所有可能组合。一种方法是 itertool.combinations (),但使用 .combinations 我只能组合列表中的项目。

列表:

colors      = ["blue", "yellow", "green", "black", "magenta"]
numbers = [1,2,3,4,5,6,7,8]
material = ["beton", "wood", "stone"]
names = ["Susi", "Klara", "Claire", "Moni"]

结果应该是:

[blue, 1, beton], [blue, 1, Susi], [blue, 2, beton]…

最佳答案

您可以使用函数product():

from itertools import product

list(product(colors, numbers, material + names))

关于Python 迭代工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54824491/

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