如果我有:
dicts = [{'a': 4,'b': 7,'c': 9}, {'a': 2,'b': 1,'c': 10}, {'a': 11,'b': 3,'c': 2}]
我怎样才能获得最大键,如下所示:
{'a': 11,'c': 10,'b': 7}
python dictionary list
dictionary ×1
list ×1
python ×1