可以使用collections庫中的Counter類來統(tǒng)計字符串中字符的出現(xiàn)次數(shù)。示例如下:
from collections import Counter
s = "hello world"
counts = Counter(s)
for char, count in counts.items():
print(f"{char}: {count}")
運行以上代碼,輸出結(jié)果為:
h: 1
e: 1
l: 3
o: 2
: 1
w: 1
r: 1
d: 1