我有这样的字典,以确定月份的顺序:
meses_ord = {'January':1, 'February': 2, 'March':3, ... }
我还有一个这样的词典列表:
fechas_ = [{'anyo': 2010, 'horas': Decimal('52.5'), 'month': 'March', 'importe': Decimal('4200.000')},
{'anyo': 2010, 'horas': Decimal('40.0'), 'month': 'February', 'importe':Decimal('3200.000')},
{'anyo': 2010, 'horas': Decimal('42.5'), 'month': 'April', 'importe': Decimal('3400.000')},
{'anyo': 2010, 'horas': Decimal('20.0'), 'month': 'January', 'importe': Decimal('1600.000')}]
我想根据月份密钥订购字典列表。
我尝试了很多东西,但没有一个有效:
fechas_ord = sorted(fechas_, key=operator.itemgetter(meses_ord[fechas_['mes']]))
答案 0 :(得分:2)
使用排序键功能查找月份:
def sort_by_month(entry):
return meses_ord[entry['month']]
sorted(fechas_, key=sort_by_month)
sort函数也可以表示为lambda,只需确保它有一个参数:
sorted(fechas_, key=lambda entry: meses_ord[entry['month']])
演示:
>>> from decimal import Decimal
>>> from pprint import pprint
>>> meses_ord = {'January': 1, 'February': 2, 'March': 3, 'April': 4}
>>> fechas_ = [{'anyo': 2010, 'horas': Decimal('52.5'), 'month': 'March', 'importe': Decimal('4200.000')},
... {'anyo': 2010, 'horas': Decimal('40.0'), 'month': 'February', 'importe':Decimal('3200.000')},
... {'anyo': 2010, 'horas': Decimal('42.5'), 'month': 'April', 'importe': Decimal('3400.000')},
... {'anyo': 2010, 'horas': Decimal('20.0'), 'month': 'January', 'importe': Decimal('1600.000')}]
>>> pprint(sorted(fechas_, key=lambda entry: meses_ord[entry['month']]))
[{'anyo': 2010,
'horas': Decimal('20.0'),
'importe': Decimal('1600.000'),
'month': 'January'},
{'anyo': 2010,
'horas': Decimal('40.0'),
'importe': Decimal('3200.000'),
'month': 'February'},
{'anyo': 2010,
'horas': Decimal('52.5'),
'importe': Decimal('4200.000'),
'month': 'March'},
{'anyo': 2010,
'horas': Decimal('42.5'),
'importe': Decimal('3400.000'),
'month': 'April'}]
答案 1 :(得分:0)
假设您已将变量定义如下
months = {'January':1, 'February': 2, 'March':3, 'April':4 }
stuff = [{'anyo': 2010, 'horas': Decimal('52.5'), 'month': 'March', 'importe': Decimal('4200.000')},
{'anyo': 2010, 'horas': Decimal('40.0'), 'month': 'February', 'importe':Decimal('3200.000')},
{'anyo': 2010, 'horas': Decimal('42.5'), 'month': 'April', 'importe': Decimal('3400.000')},
{'anyo': 2010, 'horas': Decimal('20.0'), 'month': 'January', 'importe': Decimal('1600.000')}]
然后运行以下命令将返回一个排序列表
sorted(stuff, key=lambda stuffa: months[stuffa['month']])
了解更多信息