Question: PYTHON 2) Write a program to filter out all empty strings within a list of strings. For this exercise, write a function clean_list( list1)
2) Write a program to filter out all empty "" strings within a list of strings. For this exercise, write a function clean_list( list1) where list1 is the list with many "" empty strings. This function returns a list without any "" components. lst1=["Tom", "", "Dick", "Harry","", "Here", "", "There", "", "Everywhere"] In the clean_list(1st1) function: Create a new list[] Use a while loop to iterate the list: If the item is ! "": Append it to the new list[] Increment index Return the new list. results; ['Tom', ", 'Dick', 'Harry', ", 'Here', ", 'There', ", 'Everywhere'] ['Tom', 'Dick', 'Harry', 'Here', 'There', 'Everywhere'] 3) This time instead of removing all the "" empty strings, the program breaks off and stop the first encounter of "". Result: ['Tom', ", 'Dick', 'Harry', ", 'Here', ", 'There', ", 'Everywhere'] ['Tom']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
