在 python 中生成组合

发布于 2024-09-08 01:31:02 字数 453 浏览 1 评论 0原文

我不知道如何在 Python 中解决这个问题,如果可能的话。我需要做的是从 3 个独立的数组创建一个数组(或矩阵,或向量?)。每个数组有 4 个元素,它们返回:

Class1 = [1,2,3,4] 类别 2 = [1,2,3,4] Class3 = [1,2,3,4]

现在我想做的是返回这三个类的所有可能组合。

示例:

1 1 1
2 1 1
3 1 1
4 1 1
1 2 1
2 2 1
3 2 1
4 2 1...

...依此类推到64行(4个元素*每个类16种可能的组合= 64行

我希望有一种方法可以在python中做到这一点。我确信有,但我没有确定最有效的方法是什么?也许是迭代每个类的每个元素的“for in”循环语句?或者现在我正在研究这个,itertools 可以处理这个问题吗

I am not sure how to go about this in Python, if its even possible. What I need to do is create an array (or a matrix, or vector?) from 3 separate arrays. Each array as 4 elements as such, they return this:

Class1 = [1,2,3,4]
Class2 = [1,2,3,4]
Class3 = [1,2,3,4]

Now what I would like to do is return all possible combinations of these three classes.

Example:

1 1 1
2 1 1
3 1 1
4 1 1
1 2 1
2 2 1
3 2 1
4 2 1...

...and so on to 64 rows (4 elements *16 possible combinations for each class = 64 rows

I am hoping there is a way to do this in python. I am sure there is but I am not sure what the most efficient way to go about would be. Perhaps a "for in" loop statement that iterates over each element for each class? Or now that I am researching this, would itertools handle this?

Thanks in advance for any help offered.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

云醉月微眠 2024-09-15 01:31:02

您想要的称为 笛卡尔积

import itertools

iterables = [ [1,2,3,4], [88,99], ['a','b'] ]

for t in itertools.product(*iterables):
    print t

What you want is called a Cartesian product:

import itertools

iterables = [ [1,2,3,4], [88,99], ['a','b'] ]

for t in itertools.product(*iterables):
    print t
2024-09-15 01:31:02

最简单的方法:

for i in Class1:
    for j in Class2:
        for k in Class3:
            print (i,j,k)

The simplest way:

for i in Class1:
    for j in Class2:
        for k in Class3:
            print (i,j,k)
破晓 2024-09-15 01:31:02

检查Python itertools 标准模块

itertools.combinations(iterable, r)

从输入可迭代对象中返回 r 个长度的元素子序列。

Check the Python itertools standard module:

itertools.combinations(iterable, r)

Return r length subsequences of elements from the input iterable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文