去除元音字符的python代码
时间: 2023-07-10 14:41:19 浏览: 171
python中删除某个指定字符
好的,以下是一个简单的 Python 代码,可以去除给定字符串中的元音字符:
```python
def remove_vowels(string):
vowels = "aeiouAEIOU"
new_string = ""
for char in string:
if char not in vowels:
new_string += char
return new_string
```
你可以把要去除元音字符的字符串 `string` 作为参数传入 `remove_vowels` 函数中,函数会返回一个新的字符串,其中已经去掉了所有的元音字符。
阅读全文