longgb246的博客

统计排序

统计

1
2
3
from collections import Counter
Counter(nodes_str) # 统计有多少
Counter(Counter(nodes_str).values()) # 统计有多少的有多少

排序

对于list和dict都可以

1
2
aa = {'a':1, 'b':3, 'c':2}
sorted(aa.items(), key=lambda x: x[1])

坚持原创技术分享,您的支持将鼓励我继续创作!