python找出字符串中的元音字符
时间: 2023-10-21 20:05:41 浏览: 227
python查找字符串
5星 · 资源好评率100%
可以使用Python的字符串方法和循环来找出字符串中的元音字符。下面是一个示例代码:
```python
string = "Hello, this is a sample string."
vowels = "aeiou"
count = 0
for char in string:
if char.lower() in vowels:
count += 1
print("The number of vowels in the string is:", count)
```
执行以上代码,输出结果应该是:"The number of vowels in the string is: 9"。
请问您还有其他问题需要我回答吗?
阅读全文