本篇文章介绍如何使用 Python 根据计数器的值对计数器进行排序。
计数器是 Python 中集合模块的一部分,可帮助计算特定字符出现的总数。 该事件可能是数组或字符串的一部分。
让我们了解如何使用集合来计算 Python 中特定字符出现的次数。 我们可以借助以下代码来做到这一点。
from collections import Counter
x = ['a','a','b','c','b','c','a', 'b','a']
print(Counter(x))
输出:
Counter({'a': 4, 'b': 3, 'c': 2})
现在我们已经学习了如何通过集合模块在 Python 中使用 Counter,让我们尝试了解如何对 Counter 的值进行排序。
我们可以借助计数器的 most_common()
函数来完成此操作。 most_common()
函数帮助我们找到给定数据结构中出现次数最多的字符。
您可以借助以下 Python 代码来使用 most_common()
函数。
from collections import Counter
x = Counter(['a','a','b','c','b','c','a', 'b','a'])
print(x.most_common())
输出:
[('a', 4), ('b', 3), ('c', 2)]
%> 请注意
,Counter 的 most_common()
函数的输出是按降序排序的值数组。
类似地,我们在 Counter 中也有 less_common()
函数。 此函数获取计数并查找出现次数最少的字符。 请看下面的代码:
from collections import Counter
x = Counter(['a','a','b','c','b','c','a', 'b','a'])
print(x.most_common()[::-1])
输出:
[('c', 2), ('b', 3), ('a', 4)]
因此,我们已经成功地探索了如何使用集合模块中的 Counter 根据 Python 中的值对数据结构的字符进行排序。