python统计字符串中字母
时间: 2023-07-14 22:13:02 浏览: 95
统计字符串中每个字母的个数
5星 · 资源好评率100%
你可以使用Python中的字符串方法和循环来统计字符串中字母的数量。以下是一个例子:
```python
s = "Hello, world!"
letter_count = 0
for char in s:
if char.isalpha():
letter_count += 1
print("The string '{}' contains {} letters.".format(s, letter_count))
```
输出:
```
The string 'Hello, world!' contains 10 letters.
```
在这个例子中,我们使用了一个for循环来遍历字符串中的每个字符。然后,我们使用`isalpha()`方法来判断字符是否为字母。如果是字母,我们就将计数器`letter_count`增加1。最后,我们输出了字符串中字母的数量。
阅读全文