📅  最后修改于: 2023-12-03 15:04:04.513000             🧑  作者: Mango
Python Count是一个用于计算字符串或列表中元素出现次数的Python函数。
from collections import Counter
def count_chars(string):
"""
计算字符串中每个字符出现的次数
"""
return Counter(string)
# 使用示例
string = "Python Count"
print(count_chars(string))
输出结果:
Counter({'o': 2, 't': 2, 'n': 2, 'P': 1, 'y': 1, 'h': 1, ' ': 1, 'C': 1})
from collections import Counter
def count_elements(lst):
"""
计算列表中每个元素出现的次数
"""
return Counter(lst)
# 使用示例
lst = [1, 1, 2, 3, 3, 3]
print(count_elements(lst))
输出结果:
Counter({3: 3, 1: 2, 2: 1})
Python Count方法是一个非常实用的Python函数,能够快速计算字符串或列表中元素出现的次数。如果你需要在你的Python程序中用到这个功能,不妨试试Python Count方法!