python strip list code example

Example 1: how to strip a list in python

list1 = ["a  ", "  b ", " c"]

[i.strip() for i in list1] # ['a', 'b', 'c']

Example 2: strip in python

txt = "     banana     "
x = txt.strip()
#x will be "banana"

Example 3: python strip

txt = "  test    "

txt.strip()
#Output: "test"

txt.lstrip()
#Output: "test    "

txt.rstrip()
#Output: "  test"

Example 4: python strip

# removes outside whitespace/characters
'  hey  '.strip()     # "hey"
'  hey  '.lstrip()    # "hey  "
'  hey  '.rstrip()    # "  hey"
'_.hey__'.strip('._') # "hey"

Example 5: python strip()

a = "  smurf   "

a = a.strip()
#remove space at begining and end of string
print(a)
#smurf