Python 中 2 个元组的所有成对组合


当需要在两个元组之间找出所有成对组合时,可以使用列表解析。

以下是对其进行演示的示例 −

示例

 实时演示

from itertools import product
N = 2
print("The value of N has been initialized to ")
print(N)
my_result = [ele for ele in product(range(1, N + 1), repeat = N)]

print("All tuple combinations until 2 are : " )
print(my_result)

输出

The value of N has been initialized to
2
All tuple combinations until 2 are :
[(1, 1), (1, 2), (2, 1), (2, 2)]

说明

  • 导入所需的包。

  • 设置 N 的值并将其显示在控制台上。

  • 列表解析用于遍历 N 之前的各个值,并对它们进行增加。

  • 将其赋值给一个变量。

  • 将其显示为控制台输出。

更新日期:2021 年 4 月 17 日

208 次浏览

开启您的职业生涯之旅

完成课程获取认证

开始学习
广告