Question: in python Q8 Create a function called collector that will extract all vowels from a string variable called w, and return those vowels as a

in python Q8 in python Q8 Create a function called collector that will extract all

Create a function called collector that will extract all vowels from a string variable called w, and return those vowels as a new string in sequential order. If this string variable does not have vowels, then we will return an empty string . Example 1 Input: "hello" output: "eo" Reasion: "e" and " 0were the only vowels in the input. Example 2 Input? "rhythyms" Output: = Reasion: No vowels existed within this input, This tests your understanding of: - Variable Assignment - Loops - Conditionals - Functions [1] def collector(w): pass [1] \# this should return "eo" print (collector ("he110"))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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!