def character_frequency(string):
for i in string:
count = 0
print(i,":", count, end = ", ")
count += 1
return count
print(character_frequency("dortmund"))
我的目标是打印每个字母并查看该字母在字符串中出现了多少次。
我尝试打印每个字母,并使用一个名为 count 的变量来遍历每个字母,看看该字母在字符串中存在多少次。