I have a list with empty lists in it:
list1 = [[], [], [], [], [], 'text', 'text2', [], 'moreText']
How can I remove the empty lists so that I get:
list2 = ['text', 'text2', 'moreText']
I tried list.remove('') but that doesn't work.
|
Try
If you want to get rid of everything that is "falsy", e.g. empty strings, empty tuples, zeros, you could also use
|
|||
|
|
You can use
If It might be slightly faster than the list comprehension, because it only executes a single function in Python, the rest is done in C. |
|||
|
|
|
|||||||
|
|
Calling
|
|||
|
|
sample session:
|
||||
'' != [], that's why.removedidn't work. But it's still a bad solution (either you check if there is[] in list1before hand -O(n**2)- or catch the error it throws otherwise - ugly). – delnan Jan 30 '11 at 12:53