Python将排序后的List转换为Dict,其位置指定为(键,值)对

时间:2015-05-05 15:38:50

标签: python dictionary data-structures

刚开始使用Python时,转换排序列表的最佳方法是什么(是的,列表中的元素是唯一):

[a0, a1, a2, a3, ..., aj, ... ]

到Dict数据类型,其位置如下所示:

{
    a0: {'index':0},
    a1: {'index':1},
    a2: {'index':2},
    ...
    aj: {'index':j},
    ...
}

请在此澄清一些问题:

  • dict中实际上有更多对,例如{'index': j, 'name': wow, ...},并且从列表转换为此类dict是必要的,其他属性,例如'name'将添加 之后dict已经创建了,所以基本上它看起来像跟随,首先创建dict,第二个基于键aj添加其他属性,其他属性后来出现;
  • 明确定义index是必要的,它最终将如下所示:{'index': myFunc(j)}

非常感谢您的帮助!

我尝试过:

  1. 尝试l = zip(mylist, range(len(mylist)))并将l(看起来像[(a0, 0), (a1, 1), ...])转换为dict,但是,它的列表中包含tuple;
  2. 尝试d = dict(zip(mylist, range(mylist.len))),但仍然需要将{ai: i}转换为{ai:{'index': i}},并且不知道从这里解决的好方法;
  3. 尝试了天真的for循环,但是没有发生

1 个答案:

答案 0 :(得分:5)

使用Dict comprehension(单行;如果您没有这两个问题):

result = {key: {"index": index} for index, key in enumerate(yourList)}

您可以像以下一样使用它:

>>> yourList = range(10)
>>> result = {key: {"index": index} for index, key in enumerate(yourList)}
>>> result
{0: {'index': 0}, 1: {'index': 1}, 2: {'index': 2}, 3: {'index': 3}, 4: {'index': 4}, 5: {'index': 5}, 6: {'index': 6}, 7: {'index': 7}, 8: {'index': 8}, 9: {'index': 9}}

对于解决这两个子弹的解决方案,我建议如下:

result = {}
for index, item in enumerate(yourList):
    currentDict = {"name": "wow", .. all your other properties .. }
    currentDict["index"] = index #Or may be myFunc(index)
    result[item] = currentDict

注意:我希望您在原始列表中使用可清除项目。