共计 212 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用 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
丸趣 TV 网 – 提供最优质的资源集合!
正文完