在Python中将元组转换为相邻对字典

当需要将元组转换为邻接对字典时,可以使用'dict'方法,字典理解和切片。

字典以(键,值)对的形式存储值。字典理解是迭代字典并对其执行操作的简写。

切片将给出从给定的较低索引值到给定的较高索引值的可迭代存在的值,但排除具有较高索引值的元素。

以下是相同的演示-

示例

my_tuple_1 = (7, 8, 3, 4, 3, 2)

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

my_result = dict(my_tuple_1[idx : idx + 2] for idx in range(0, len(my_tuple_1), 2))

print("The dictionary after converting to tuple is: ")
print(my_result)
输出结果
The first tuple is :
(7, 8, 3, 4, 3, 2)
The dictionary after converting to tuple is:
{7: 8, 3: 2}

解释

  • 元组已定义并显示在控制台上。

  • “ dict”方法用于通过遍历元组中的元素将元组转换为字典。

  • 该结果分配给变量。

  • 它在控制台上显示为输出。