如何写一个Python程序来统计字符串中字符的个数(字符频率)?

问题描述 投票:0回答:0
def character_frequency(string):
    for i in string:
        count = 0
        print(i,":", count, end = ", ")
        count += 1
    return count


print(character_frequency("dortmund"))

我的目标是打印每个字母并查看该字母在字符串中出现了多少次。

我尝试打印每个字母,并使用一个名为 count 的变量来遍历每个字母,看看该字母在字符串中存在多少次。

python function variables return
© www.soinside.com 2019 - 2024. All rights reserved.