python的most_common()函数
我们知道python内建模块的collections有很多好用的操作。比如:from collections import Counter#统计字符串# top n问题user_counter = Counter("abbafafpskaag")print(user_counter.most_common(3)) #[('a', 5), ('b', 2), ('f', 2)]p...