Question: Write a function vowel_reverser that takes a word (a string) and reverses the vowels. vowels = aeiouAEIOU Hello becomes Holle butterscotch becomes botterscutch. The e

 Write a function vowel_reverser that takes a word (a string) and

Write a function vowel_reverser that takes a word (a string) and reverses the vowels. vowels = "aeiouAEIOU" "Hello" becomes "Holle" "butterscotch" becomes "botterscutch". The e didn't switch places with anything. If the word contains anything other than letters [A..Za z] return the empty string. Punctuation, special symbols, hypthens, spaces etc should return the empty string. In [48]: from string import ascii_letters In [55]: #ascii_Letters is uppercase + Lowercase combined from string import ascii_letters vowels = "aeiouAEIOU" def vowel_reverser (word): output = "" for i in word: if i == vowels: else: return(output) In [56]: vowel_reverser("Hello")

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To implement the vowelreverser function you need to follow these steps Check if the word contains on... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!