Question: Write function exclamation() that takes as input a string and returns it with this modification: Every vowel is replaced by four consecutive copies of itself
Write function exclamation() that takes as input a string and returns it with this modification: Every vowel is replaced by four consecutive copies of itself and an exclama- tion mark (!) is added at the end. >>> exclamation('argh') 'aaaargh!' >>> exclamation('hello') 'heeeelloooo!'
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
