10

我正在使用 python 2.7.3,我正在尝试根据另一个列表的值的顺序对字典列表进行排序。

IE:

listOne = ['hazel', 'blue', 'green', 'brown']
listTwo = [{'name': 'Steve', 'eyecolor': 'hazel', 'height': '5 ft. 11 inches'},
           {'name': 'Mark', 'eyecolor': 'brown', 'height': '6 ft. 2 inches'},
           {'name': 'Mike', 'eyecolor': 'blue', 'height': '6 ft. 0 inches'},
           {'name': 'Ryan', 'eyecolor': 'brown', 'height': '6 ft, 0 inches'},
           {'name': 'Amy', 'eyecolor': 'green', 'height': '5 ft, 6 inches'}]

根据 listOne 中值的顺序对 listTwo 进行排序,我们将得到以下结果:

print listTwo
[{'name': 'Steve', 'eyecolor': 'hazel', 'height': '5 ft. 11 inches'},
{'name': 'Mike', 'eyecolor': 'blue', 'height': '6 ft. 0 inches'},
{'name': 'Amy', 'eyecolor': 'green', 'height': '5 ft, 6 inches'},
{'name': 'Mark', 'eyecolor': 'brown', 'height': '6 ft. 2 inches'},
{'name': 'Ryan', 'eyecolor': 'brown', 'height': '6 ft, 0 inches'}]

我最终需要输出此文本,因此我为正确显示它(以正确的顺序)所做的工作如下:

for x in xrange(len(listOne)):
    for y in xrange(len(listTwo)):
        if listOne[x] == listTwo[y]["eyecolor"]:
            print "Name: " + str(listTwo[y]["name"]),
            print "Eye Color: " + str(listTwo[y]["eyecolor"]),
            print "Height: " + str(listTwo[y]["height"])

是否有某种 lambda 表达式可以用来实现这一点?必须有一种更紧凑、更简单的方法来按我想要的顺序获取它。

4

2 回答 2

13

最简单的方法是使用list.index为您的字典列表生成排序值:

listTwo.sort(key=lambda x: listOne.index(x["eyecolor"]))

虽然这有点低效,因为list.index通过眼睛颜色列表进行线性搜索。如果你有很多眼睛颜色要检查,它会很慢。一种更好的方法是构建一个索引字典:

order_dict = {color: index for index, color in enumerate(listOne)}
listTwo.sort(key=lambda x: order_dict[x["eyecolor"]])

如果不想修改listTwo,可以使用内置sorted函数代替list.sort方法。它返回列表的排序副本,而不是就地排序。

于 2013-03-27T01:39:06.117 回答
0
listOne = ['hazel', 'blue', 'green', 'brown']
listTwo = [{'name': 'Steve', 'eyecolor': 'hazel', 'height': '5 ft. 11 inches'},{'name': 'Mark', 'eyecolor': 'brown', 'height': '6 ft. 2 inches'},{'name': 'Mike', 'eyecolor': 'blue', 'height': '6 ft. 0 inches'},{'name': 'Ryan', 'eyecolor': 'brown', 'height': '6 ft, 0 inches'},{'name': 'Amy', 'eyecolor': 'green', 'height': '5 ft, 6 inches'}]


order_list_dict = {color: index for index, color in enumerate(listOne)}


print(order_list_dict)

print(sorted(listTwo, key=lambda i: order_list_dict[i["eyecolor"]]))
于 2021-11-22T11:28:39.443 回答