当需要将元组分块为“ N”个值时,将使用列表推导。
列表理解是迭代列表并对其执行操作的一种快捷方式。
以下是相同的演示-
my_tuple_1 = (87, 90, 31, 85,34, 56, 12, 5) print("The first tuple is :") print(my_tuple_1) N = 2 print("The value of 'N' has been initialized") my_result = [my_tuple_1[i : i + N] for i in range(0, len(my_tuple_1), N)] print("The tuple after chunking is : ") print(my_result)输出结果
The first tuple is : (87, 90, 31, 85, 34, 56, 12, 5) The value of 'N' has been initialized The tuple after chunking is : [(87, 90), (31, 85), (34, 56), (12, 5)]
元组已定义,并显示在控制台上。
“ N”的值被初始化。
使用'range'方法遍历元组,并使用'[]'括号将其分为多个块,并进行i.e索引。
然后将其转换为列表类型。
该结果分配给一个值。
它在控制台上显示为输出。