blob: a37dd5fdf76304690643defaf75f9bd3f970c774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def reverse_vowels(str1):
vowels = ""
for char in str1:
if char in "aeiouAEIOU":
vowels += char
result_string = ""
for char in str1:
if char in "aeiouAEIOU":
result_string += vowels[-1]
vowels = vowels[:-1]
else:
result_string += char
return result_string
|