统计字符串中出现字符的次数

By 刘志军 , 2020-06-13, 分类: qa

python

统计字符串中出现某个字符串的次数

>>> "abc33aef".count("a")
2
>>>

统计所有字符分别出现的次数

>>> from collections import Counter
>>> Counter("abc33aef")
Counter({'a': 2, '3': 2, 'b': 1, 'c': 1, 'e': 1, 'f': 1})

Counter 是字典的子类,可以像字典一样使用

>>> c = Counter("abc33aef")
>>> c['a']
2
>>> c['b']
1

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2020-06-07
python合并两个字典
2019-05-12
Python时间戳转日期时间
2017-08-01
Python 2 和 Python 3 主要区别有哪些(一)?
2017-11-08
Python每日一题:第4题:用Python实现斐波那契数列
2017-11-03
Python陷阱:为什么不能用可变对象作为默认参数的值
2017-10-22
图解Python变量与赋值
2020-06-04
object is not subscriptable 是什么错误
2020-06-07
求求你,别再手工造假数据了,fake了解一下
2017-10-29
Python每日一题:第1题
2019-05-07
Python如何提取url中的参数