📜  python 对字典中的值进行排序i - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:33.395000             🧑  作者: Mango
代码示例1
from operator import itemgetter
new_dict = sorted(data.items(), key=itemgetter(1))