Python - 将列表转换为索引和值字典

当需要将列表转换为索引值字典时,使用“枚举”和简单迭代。

示例

以下是相同的演示 -

my_list = [32, 0, 11, 99, 223, 51, 67, 28, 12, 94, 89]

print("The list is :")

print(my_list)

my_list.sort(reverse=True)

print("The sorted list is ")

print(my_list)

index, value = "index", "values"

my_result = {index : [], value : []}

for id, vl in enumerate(my_list):

   my_result[index].append(id)

   my_result[value].append(vl)

print("The result is :")

print(my_result)

输出结果
The list is :

[32, 0, 11, 99, 223, 51, 67, 28, 12, 94, 89]

The sorted list is

[223, 99, 94, 89, 67, 51, 32, 28, 12, 11, 0]

The result is :

{'index': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 'values': [223, 99, 94, 89, 67, 51, 32, 28, 12, 11, 0]}

解释

  • 定义了一个整数列表并显示在控制台上。

  • 该列表以相反的顺序排序并显示在控制台上。

  • 索引和值被初始化用于显示目的。

  • 使用 enumerate 迭代列表,并将索引和值附加到空列表。

  • 这是显示在控制台上的输出。

以上是 Python - 将列表转换为索引和值字典 的全部内容, 来源链接: utcz.com/z/361052.html

回到顶部