Bootstrap

python 按照字典value值进行降序排序

sorted(dic.items(), key=lambda item:item[1], reverse=True)

;