可以使用collections库中的Counter类来统计字符串中字符的出现次数。示例如下:
from collections import Counter
s = "hello world"
counts = Counter(s)
for char, count in counts.items():
print(f"{char}: {count}")
运行以上代码,输出结果为:
h: 1
e: 1
l: 3
o: 2
: 1
w: 1
r: 1
d: 1
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python线程池并发请求数据怎么处理