统计字符串中元音字母的个数
时间: 2023-08-31 15:13:00 浏览: 38
VB 统计字符串中元音个数
可以通过遍历字符串中每个字符并判断其是否为元音字母来统计元音字母的个数。在英语中,元音字母共有5个,即a, e, i, o, u。
以下是一个Python示例代码:
```python
def count_vowels(s):
count = 0
vowels = 'aeiou'
for letter in s:
if letter.lower() in vowels:
count += 1
return count
```
其中,`s`为输入的字符串,`count`为元音字母的计数器,`vowels`为包含所有元音字母的字符串。遍历字符串`s`中的每个字符,如果该字符是元音字母,则将计数器加1。最后返回计数器的值即可。
示例:
```python
s = 'Hello World'
print(count_vowels(s)) # 输出2,因为'e'和'o'是元音字母
```
阅读全文