Question: col_vow(string) - The parameter s is a string. This function will recursively return a list where the elements in the list are the vowels that
col_vow(string) - The parameter s is a string. This function will recursively return a list where the elements in the list are the vowels that exist in s (in the case that appears in s). If there are no vowels in s, then this function will return an empty list. # Example test assert collectVowels("This Is A Sentence") \ == ['i', 'I', 'A', 'e', 'e', 'e']
This code should be written in python and as a recursive function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
