Python中元组的添加

当需要添加元组时,可以使用'amp'和lambda函数。

映射函数将给定的函数/操作应用于可迭代项(例如列表,元组)中的每个项目。它返回一个列表作为结果。

匿名函数是没有名称定义的函数。

通常,Python中的函数是使用'def'关键字定义的,而匿名函数是通过'lambda'关键字定义的。它采用单个表达式,但可以采用任意数量的参数。它使用该表达式并返回其结果。以下是相同的演示-

示例

my_tuple_1 = (11, 14, 54, 56, 87)
my_tuple_2 = (98, 0, 10, 13, 76)

print("The first tuple is : ")
print(my_tuple_1)
print("The second tuple is : ")
print(my_tuple_2)

my_result = tuple(map(lambda i, j: i + j, my_tuple_1, my_tuple_2))

print("The tuple after addition is: ")
print(my_result)
输出结果
The first tuple is :
(11, 14, 54, 56, 87)
The second tuple is :
(98, 0, 10, 13, 76)
The tuple after addition is:
(109, 14, 64, 69, 163)

解释

  • 定义了两个元组,并将其显示在控制台上。

  • lambda函数应用于两个元组的每个元素,而'map'方法用于映射加法过程。

  • 然后将其转换为元组。

  • 这已分配给一个值。

  • 它显示在控制台上。