Question: python pls Write the recursive function remove_vowels, which takes as its argument a nested list of strings and mutates it - after executing the function,

python pls
Write the recursive function remove_vowels, which takes as its argument a nested list of strings and mutates it - after executing the function, all of the strings in the list should have vowels (which are A, E, I, O, U in this scenario) removed. Upper and lower case letters in strings should be considered the same. Your function should modify the original list, not create a new one. The function should ignore objects of types other than list or string. Strings may contain any variation of characters. For example, consider the list defined below: example = ['He is Boo', ['Boo wears Boots', ['Boo is love'), 'Boo! Halloween!']] After the call remove_vowels (example), the example list should become [HSB', ['Bwrs Bts', ['B s lv'), 'B! Hllwn!']] def remove_vowels (slist: (str or list]) -> None
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
