当需要执行元组乘法时,可以使用“ zip”方法和生成器表达式。
zip方法采用可迭代对象,将它们聚合到一个元组中,然后将其作为结果返回。
生成器是创建迭代器的一种简单方法。它自动使用“ __iter__()”和“ __next__()”方法实现一个类,并跟踪内部状态,并在不存在可以返回的值时引发“ StopIteration”异常。
以下是相同的演示-
my_tuple_1 = (23, 45, 12, 56, 78) my_tuple_2 = (89, 41, 76, 0, 11) print("The first tuple is : ") print(my_tuple_1) print("The second tuple is : ") print(my_tuple_2) my_result = tuple(elem_1 * elem_2 for elem_1, elem_2 in zip(my_tuple_1, my_tuple_2)) print("The multiplied tuple is : ") print(my_result)输出结果
The first tuple is : (23, 45, 12, 56, 78) The second tuple is : (89, 41, 76, 0, 11) The multiplied tuple is : (2047, 1845, 912, 0, 858)
定义了两个元组,并将其显示在控制台上。
将它们压缩并反复遍历
第一个元组中的每个元素都与第二个元组中的对应元素多个。
它转换为元组。
该操作被分配给一个值。
它在控制台上显示为输出。