gpt4 book ai didi

python - 如何对坐标列表进行排序?

转载 作者:行者123 更新时间:2023-11-30 23:05:12 28 4
gpt4 key购买 nike

假设我有一个坐标列表如下:

list_ = [{'x':1,'y':2},{'x':1,'y':1},{'x':3,'y':3}]

我想先排序x键,然后排序y key 。所以我期望:

list_ = [{'x':1,'y':1},{'x':1,'y':2},{'x':3:'y':3}]

我该怎么办?

最佳答案

使用sort/sortedkey参数。您传递一个返回要排序的键的函数。 operator.itemgetter 是生成函数的有效方法:

>>> from operator import itemgetter
>>> list_ = [{'x':1,'y':2},{'x':1,'y':1},{'x':3,'y':3}]
>>> sorted(list_,key=itemgetter('x','y'))
[{'x': 1, 'y': 1}, {'x': 1, 'y': 2}, {'x': 3, 'y': 3}]

关于python - 如何对坐标列表进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33293580/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com