python中如何统计字符串的字母个数
时间: 2023-08-28 09:04:39 浏览: 374
统计字符串中每个字母的个数
5星 · 资源好评率100%
可以使用Python的内置函数len()和字符串的count()方法来统计字符串的字母个数。
示例代码:
```
string = "Hello, World!"
letter_count = 0
for char in string:
if char.isalpha():
letter_count += 1
print("字母个数为:", letter_count)
```
输出结果:
```
字母个数为: 10
```
另外,也可以使用count()方法统计字符串中某个字母的出现次数。例如:
```
string = "Hello, World!"
count_e = string.count("e")
print("e出现的次数为:", count_e)
```
输出结果:
```
e出现的次数为: 1
```
阅读全文