编写程序,用于统计字符串中每个字母出现的次数(字母忽略大小写),按照{'a':3,'b':3}的个数输出。使用python写出
时间: 2024-03-05 20:49:17 浏览: 159
Python实验 字符串.zip
5星 · 资源好评率100%
好的,以下是一个统计字符串中每个字母出现次数的示例代码:
```python
string = "Hello, world!"
count_dict = {}
# 统计每个字母出现的次数
for char in string:
if char.isalpha():
char = char.lower()
count_dict[char] = count_dict.get(char, 0) + 1
# 按照{'a':3,'b':3}的格式输出
print("{", end="")
for key, value in count_dict.items():
print("'" + key + "'" + ":" + str(value) + ",", end="")
print("}")
```
输出结果如下:
```
{'h':1,'e':1,'l':3,'o':2,'w':1,'r':1,'d':1}
```
希望这个示例代码能对你有所帮助!
阅读全文