给定一个字符串,统计每个字符出现的次数,并将结果存储在一个字典中。用python完成
时间: 2024-03-08 19:49:16 浏览: 72
字典作为计数器集合-hard_real-time_computing_systems
好的,下面是代码:
```python
str = "hello, world!"
count_dict = {}
for char in str:
if char in count_dict:
count_dict[char] += 1
else:
count_dict[char] = 1
print(count_dict)
```
输出结果为:
```
{'h': 1, 'e': 1, 'l': 3, 'o': 2, ',': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1, '!': 1}
```
其中字典的 key 表示字符串中出现的字符,value 表示该字符在字符串中出现的次数。
阅读全文