写一个函数,将一个字符串中的元音字母复制到另一个字符串中,然后输出
时间: 2024-06-13 21:08:46 浏览: 139
c代码-C语言编写一个函数,将一个字符串中的元音字母复制到另一字符串,然后输出
以下是一个将字符串中的元音字母复制到另一个字符串中的Python函数,并输出结果的例子:
```python
def copy_vowels(input_str):
vowels = "aeiouAEIOU"
output_str = ""
for char in input_str:
if char in vowels:
output_str += char
return output_str
input_str = "Hello World"
output_str = copy_vowels(input_str)
print(output_str) # 输出:eoO
```
该函数首先定义了一个包含所有元音字母的字符串vowels,然后遍历输入字符串input_str中的每个字符,如果该字符是元音字母,则将其添加到输出字符串output_str中。最后返回输出字符串output_str并将其打印出来。
阅读全文