Revorse the vewels def reverse_vowels(text): Given a text string, create and return a new string constructed by finding all its vowels (in this problem, 'aeiouAEIOU") and reversing their order, while keeping all other characters exactly as they were in their original positions. Furthermore, the capitalization of each position must remain the same as it was in the original text. For example, reversing the vowels of 'Ilkka' should produce 'Alkki' instead of 'alkkI'. Results of applying this operation to perfectly ordinary English sentences often comically resemble pig latin imitations of other languages. Along with many possible ways to perform this dance, one straightforward way to reverse the vowels starts by appending the vowels of text into a separate list, and initializing the result to an empty string. Then, loop through all characters of the original text. Whenever the current character is a vowel pop one from the end of the list of the vowels. Convert that vowel to either upper- or lowercase depending on the case of the vowel that was originally in that position, and add it to result. Otherwise, add the character from the original text to the result as it was. text Expected result "Revorse the vewels' "Reverse the vowels' "Bengt Hilgursson' "Bongt Hulgirssen' "Why do you laugh? I chose the why da yee leogh? I chusa thu death.' dooth. "These are the people you protect vith your paini" "Thisa uro thi peoplu yoe protect weth year peeni" "who's the leader of the club "Whi's thi liider af thu clob that's made for you and me? T- thot's mude fer yeo end u? T- R-I-C-K-Y M-0-U-S-EI Tricky Mousel TRICKY MOUSEI Tricky Mousel TRICKY MOUSEI Forever let us hold our Hammers highi Highi Highi Highi" R-0-C-K-Y M-I-E-S-UI Trocky Miesul TROCKY MIESUI Trocky Miesul TROCKY MIESAI Furovor let as hald uer Hommera haghi Heghi Heghi Hoghi"

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 16RQ
icon
Related questions
Question
Revorse the vewels
def reverse vowele(text):
Given a text string, create and return a new string constructed by finding all its vowels (in this
problem, 'aeiouAEIOU') and reversing their order, while keeping all other characters exactly as
they were in their original positions. Furthermore, the capitalization of each position must remain
the same as it was in the original text. For example, reversing the vowels of 'Ilkka' should
produce 'Alkki' instead of 'alkkI'. Results of applying this operation to perfectly ordinary
English sentences often comically resemble pig latin imitations of other languages.
Along with many possible ways to perform this dance, one straightforward way to reverse the
vowels starts by appending the vowels of text into a separate list, and initializing the result to
an empty string. Then, loop through all characters of the original text. Whenever the current
character is a vowel, pop one from the end of the list of the vowels. Convert that vowel to either
upper- or lowercase depending on the case of the vowel that was originally in that position, and add
it to result. Otherwise, add the character from the original text to the result as it was.
text
Expected result
'Revorse the vewels
'Reverse the vowels'
'Bengt Hilgursson'
'Bongt Hulgirssen'
'Why do you laugh? I chose the 'Why da yee leogh? I chusa thu
death."
dooth.'
"Thisa uro thi peoplu yoe
protect weth year peenl'
"These are the people you
protect with your painl'
"who's the leader of the club
that's made for you and me? T- thot's mude fer yeo end mu? T-
R-1-C-К-х М-0-0-5-EI Tricky
Mousel TRICKY MOUSEI Tricky
Mousel TRICKY MOUSEI Forever
let us hold our Hammers highi
Highl Highl Highl"
"Whi's thi liider af thu clob
R-0-с-к-х м-1-E-S-01 Trocky
Miesul TROCKY MIESUI Trocky
Miesul TROCKY MIESAI Furovor
let as hald uer Hommers haghi
Heghi Heghi Hoghl"
Transcribed Image Text:Revorse the vewels def reverse vowele(text): Given a text string, create and return a new string constructed by finding all its vowels (in this problem, 'aeiouAEIOU') and reversing their order, while keeping all other characters exactly as they were in their original positions. Furthermore, the capitalization of each position must remain the same as it was in the original text. For example, reversing the vowels of 'Ilkka' should produce 'Alkki' instead of 'alkkI'. Results of applying this operation to perfectly ordinary English sentences often comically resemble pig latin imitations of other languages. Along with many possible ways to perform this dance, one straightforward way to reverse the vowels starts by appending the vowels of text into a separate list, and initializing the result to an empty string. Then, loop through all characters of the original text. Whenever the current character is a vowel, pop one from the end of the list of the vowels. Convert that vowel to either upper- or lowercase depending on the case of the vowel that was originally in that position, and add it to result. Otherwise, add the character from the original text to the result as it was. text Expected result 'Revorse the vewels 'Reverse the vowels' 'Bengt Hilgursson' 'Bongt Hulgirssen' 'Why do you laugh? I chose the 'Why da yee leogh? I chusa thu death." dooth.' "Thisa uro thi peoplu yoe protect weth year peenl' "These are the people you protect with your painl' "who's the leader of the club that's made for you and me? T- thot's mude fer yeo end mu? T- R-1-C-К-х М-0-0-5-EI Tricky Mousel TRICKY MOUSEI Tricky Mousel TRICKY MOUSEI Forever let us hold our Hammers highi Highl Highl Highl" "Whi's thi liider af thu clob R-0-с-к-х м-1-E-S-01 Trocky Miesul TROCKY MIESUI Trocky Miesul TROCKY MIESAI Furovor let as hald uer Hommers haghi Heghi Heghi Hoghl"
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Problems on Number Theoretic Algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT