I was trying to remove these blanks ' ' but not all the blank spaces are getting removed by the loop. Only blanks in the starting of the list are getting removed.
I used this:
for i in range(0, len(list_for_kevin)):
if list_for_kevin[i] == '':
list_for_kevin.remove(list_for_kevin[i])
but after using this I got the output of the following:
Please Help me to find the right way to remove all the ' ' from the list.