Thursday, July 2, 2026
HomeLanguagesPython | Remove additional spaces in list

Python | Remove additional spaces in list

Sometimes, we have a list that contains strings and spaces in between them. We desire to have uniformity, so that later if we decide them, we just have single spaces between the lists. Hence its sometimes necessary to remove the additional unnecessary spaces between the words in a list. Let’s discuss certain ways in which this can be done. Method #1 : Using list comprehension + enumerate() In this method we create a whole new list rather than modifying the original one, and check for element and its preceding element for spaces and add only add one occurrence of space and leaving the rest. 

Python3




# Python3 code to demonstrate
# removing multiple spaces
# using list comprehension + enumerate()
 
# initializing list of lists
test_list = ["GfG", "", "", "", "", "is", "", "", "best"]
 
# printing original list
print("The original list : " +  str(test_list))
 
# using list comprehension + enumerate()
# removing multiple spaces
res = [val for idx, val in enumerate(test_list)
       if val or (not val and test_list[idx - 1])]
 
# printing result
print("The list after removing additional spaces :  " + str(res))


Output : 

The original list : ['GfG', '', '', '', '', 'is', '', '', 'best']
The list after removing additional spaces :  ['GfG', '', 'is', '', 'best']

Time Complexity: O(n)
Auxiliary Space: O(n), where n is length of list.

  Method #2 : Using list comprehension + zip() + list slicing In this method, we take a pair at a time and check if it’s both elements are empty, if so, we discard it. If anyone is empty or both are non-empty, we keep it in the list. 

Python3




# Python3 code to demonstrate
# removing multiple spaces
# using list comprehension + zip() + list slicing
 
# initializing list of lists
test_list = ["GfG", "", "", "", "", "is", "", "", "best"]
 
# printing original list
print("The original list : " +  str(test_list))
 
# using list comprehension + zip() + list slicing
# removing multiple spaces
res = test_list[ : 1] + [j for i, j in
      zip(test_list, test_list[1 : ]) if i or j]
 
# printing result
print("The list after removing additional spaces :  " + str(res))


Output : 

The original list : ['GfG', '', '', '', '', 'is', '', '', 'best']
The list after removing additional spaces :  ['GfG', '', 'is', '', 'best']

Time Complexity: O(n)

Auxiliary Space: O(n), where n is number of strings in list.

RELATED ARTICLES

5 COMMENTS

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6966 POSTS0 COMMENTS