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

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

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: "he 110" output: "eo" Reasion: " e" and " o " were the only vowols in the input. Example 2 Input: "rhythyms" Output: = Peasion: No vowels existed within this input, This tests your understanding of: - Variable Assignment - Loops - Conditionals - Functions def collector(w): pass [1] \#this stiould return "eo" print (collector ("hello"))

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!