利用get函数获取字符串中每个字符出现的次数
时间: 2024-05-10 14:16:50 浏览: 95
可以使用Python中的字典来存储每个字符出现的次数。具体实现如下:
```python
string = input("请输入字符串:")
count = {} # 定义一个空字典
for char in string:
if char in count:
count[char] += 1
else:
count[char] = 1
print("每个字符出现的次数为:")
for char in count:
print(char, count[char])
```
运行程序后,输入一个字符串,程序会输出字符串中每个字符出现的次数。
阅读全文