str = "asdfasdweraasdfasdf"
char_count = {}
for char in str:
if char in char_count:
char_count[char] += 1
else:
char_count[char] = 1
for char, count in char_count.items():
print(f"字符 '{char}' 出现了 {count} 次")
这段代码会遍历字符串中的每个字符,并增加在 char_count
字典中对应字符的计数(如果字符已经在字典中,则增加计数;否则,将字符添加到字典中并设置计数为 1)。然后,代码遍历 char_count
字典,打印每个字符及其出现次数