Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions