Python 中嵌套元组的加法运算
当需要对嵌套元组执行加法运算时,可以使用“zip”方法和生成器表达式。
生成器是一种创建迭代器的简单方法。它自动实现了一个带有“__iter__()”和“__next__()”方法的类,并跟踪内部状态,并在没有可返回的值时引发“StopIteration”异常。
zip 方法采用可迭代对象,将其聚合到一个元组中,并将其作为结果返回。
下面对此进行了演示:
示例
my_tuple_1 = ((7, 8), (3, 4), (3, 2)) my_tuple_2 = ((9, 6), (8, 2), (1, 4)) print ("The first tuple is : " ) print(my_tuple_1) print ("The second tuple is : " ) print(my_tuple_2) my_result = tuple(tuple(a + b for a, b in zip(tup_1, tup_2)) for tup_1, tup_2 in zip(my_tuple_1, my_tuple_2)) print("The tuple after summation is : ") print(my_result)
输出
The first tuple is : ((7, 8), (3, 4), (3, 2)) The second tuple is : ((9, 6), (8, 2), (1, 4)) The tuple after summation is : ((16, 14), (11, 6), (4, 6))
说明
- 定义了两个嵌套元组/元组元组,并显示在控制台上。
- 对其进行压缩,然后对其进行迭代,并且对每个嵌套元组中的每个元素进行加法,并创建一个新的元组元组。
- 此结果被分配给一个变量。
- 它作为输出显示在控制台上。
广告