用sorted函数根据字典item进行排序后,返回的是排序后的list of tuple!!!
例如:
d = {"stuck":2,"traffic":5,"error_brake":3} sd = sorted(d.items(),key = lambda item:item[1],reverse = True) print(sd)
输出结果如下:
[('traffic',5),('error_brake',3),('stuck',2)]
欢迎分享,转载请注明来源:内存溢出
用sorted函数根据字典item进行排序后,返回的是排序后的list of tuple!!!
例如:
d = {"stuck":2,"traffic":5,"error_brake":3} sd = sorted(d.items(),key = lambda item:item[1],reverse = True) print(sd)
输出结果如下:
[('traffic',5),('error_brake',3),('stuck',2)]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)