python编程实现统计输入的字符串中各个字符出现的次数,要求不重复统计和不重复输出统计结果
时间: 2024-02-05 10:13:30 浏览: 66
可以使用Python内置的字典来实现统计字符串中各个字符出现的次数。具体代码如下:
```python
input_str = input("请输入字符串:")
count_dict = {}
for char in input_str:
if char not in count_dict:
count_dict[char] = input_str.count(char)
print("各个字符出现的次数为:")
for key, value in count_dict.items():
print(key, ":", value)
```
运行程序后,输入一个字符串,程序会输出该字符串中每个字符出现的次数,不重复统计和不重复输出统计结果。
阅读全文