溫馨提示×

python怎么統(tǒng)計字符串字符出現(xiàn)次數(shù)

小億
101
2024-03-01 13:33:11
欄目: 編程語言

可以使用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

0