How can I ensure the Capital letters are in the right place?"**   Explanation 1) Below is program that define function which accepts a text string and returns a new string constructed by finding all its vowels and reversing their order while keeping all other characters in same order It defines a function reverse_vowels returns new string with vowels reversed Create a list to store vowels in text Loop through all characters in text append the vowels in list Create a new text string to store vowels in reverse Loop through all characters in text if character is vowel pop one vowels from end and update new_text else keep the other text same return new text It has a test code which calls function reverse_vowels with multiple inputs and display new returned text 2) Save program in python file and run Program """Program that define function which accepts a text string and returns a new string constructed by finding all its vowels and reversing their order while keeping all other characters in same order""" #function returns new string with vowels reversed def reverse_vowels(text):     #Create a list to store vowels in text     vowels = []     #Loop through all characters in text     for ch in text:         if ch in "aeiouAEIOU":             #append the vowels in list             vowels.append(ch)     #Create a new text string to store vowels in reverse     new_text = ""     #Loop through all characters in text     for ch in text:         if ch in "aeiouAEIOU":             #pop one vowels from end and update new_text             new_text += vowels[-1]             vowels = vowels[:-1]         else:             #keep the other text same             new_text += ch     #return new text     return new_text #Test Code #Call function reverse_vowels with multiple inputs and display new returned text print(reverse_vowels("Revorse the vewels")) print(reverse_vowels("Bengt Hilgursson")) print(reverse_vowels("Why do you laugh? I chose the death")) print(reverse_vowels("These are people you protect with your pain!")) print(reverse_vowels("Who's the leader of the club that's made for you and me? \ T-R-C-K-Y M-O-U-S-E! Tricky Mouse! TRICKY MOUSE! Tricky Mouse! TRICKY MOUSE!\ Forever let us hold our Hammers high! High! High! High!"))

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
*********How can I ensure the Capital letters are in the right place?"**
 
Explanation

1) Below is program that define function which accepts a text string and returns a new string constructed by finding all its vowels and reversing their order while keeping all other characters in same order

  • It defines a function reverse_vowels returns new string with vowels reversed
    • Create a list to store vowels in text
    • Loop through all characters in text
      • append the vowels in list
    • Create a new text string to store vowels in reverse
    • Loop through all characters in text
      • if character is vowel pop one vowels from end and update new_text
      • else keep the other text same
    • return new text
  • It has a test code which calls function reverse_vowels with multiple inputs and display new returned text

2) Save program in python file and run

Program

"""Program that define function which accepts a text string and returns a new string
constructed by finding all its vowels and reversing their order while keeping all
other characters in same order"""

#function returns new string with vowels reversed
def reverse_vowels(text):

    #Create a list to store vowels in text
    vowels = []
    #Loop through all characters in text
    for ch in text:
        if ch in "aeiouAEIOU":
            #append the vowels in list
            vowels.append(ch)

    #Create a new text string to store vowels in reverse
    new_text = ""
    #Loop through all characters in text
    for ch in text:
        if ch in "aeiouAEIOU":
            #pop one vowels from end and update new_text
            new_text += vowels[-1]
            vowels = vowels[:-1]
        else:
            #keep the other text same
            new_text += ch

    #return new text
    return new_text

#Test Code
#Call function reverse_vowels with multiple inputs and display new returned text
print(reverse_vowels("Revorse the vewels"))
print(reverse_vowels("Bengt Hilgursson"))
print(reverse_vowels("Why do you laugh? I chose the death"))
print(reverse_vowels("These are people you protect with your pain!"))
print(reverse_vowels("Who's the leader of the club that's made for you and me? \
T-R-C-K-Y M-O-U-S-E! Tricky Mouse! TRICKY MOUSE! Tricky Mouse! TRICKY MOUSE!\
Forever let us hold our Hammers high! High! High! High!"))

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 2 steps with 1 images

Blurred answer
Knowledge Booster
Linked List Representation
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education