trim trailing spaces in python code example

Example 1: remove trailing and leading spaces in python

text = "   Hello World        "
text.strip()
# Hello World

Example 2: python string trim

string ='   abc   '

# After removing leading whitespace
print(string.lstrip());
# Output: 'abc   '

# After removing trailing whitespace
print(string.rstrip());
# Output: '   abc'

# After removing all whitespace
print(string.strip());
# Output: 'abc'

Example 3: trimming spaces in string python

a = "      yo!      "
b = a.strip() # this will remove the white spaces that are leading and trailing

Example 4: python trim whitespace from end of string

>>> "    xyz     ".rstrip()
'    xyz'

Example 5: python remove similar string with whitespace from list

def strip_list_noempty(mylist):
    newlist = (item.strip() if hasattr(item, 'strip') else item for item in mylist)
    return [item for item in newlist if item or not hasattr(item, 'strip')]

Tags:

Java Example