统计字符串中元音字母python
时间: 2023-08-26 12:05:38 浏览: 170
统计字符串中元音字母的个数
可以使用 Python 中的 count() 方法和字符串切片来统计字符串中元音字母的个数。
以下是一个示例代码:
```python
s = "Python is a high-level programming language."
vowels = "aeiouAEIOU"
count = 0
for vowel in vowels:
count += s.count(vowel)
print("The number of vowels in the string is:", count)
```
输出结果为:
```
The number of vowels in the string is: 14
```
在这个示例中,我们定义了一个字符串变量 `s`,它包含了需要统计元音字母的字符串。我们还定义了一个包含所有元音字母的字符串变量 `vowels`。然后,我们使用 for 循环和 count() 方法来计算字符串 `s` 中每个元音字母的出现次数,并将它们累加到变量 `count` 中。最后,我们输出变量 `count` 的值,即为字符串 `s` 中元音字母的总个数。
阅读全文