我正在使用 Python 集合库来打印字符串中最常见的字符以及重复的次数。
import collections
results = collections.Counter("this is fun")
listresults= results.most_common()
print listresults
这就是我的结果:
[(' ', 2), ('i', 2), ('s', 2), ('f', 1), ('h', 1), ('n', 1), ('u', 1), ('t', 1)]
这不是我想要的。我想要类似的东西
[(2,"i") (2, " "),...]
有谁知道如何产生预期的结果?