strip method code example

Example 1: strip in python

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

Example 2: python strip

txt = "  test    "

txt.strip()
#Output: "test"

txt.lstrip()
#Output: "test    "

txt.rstrip()
#Output: "  test"

Example 3: python strip

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

Example 4: strip()

txt = ",,,,,rrttgg.....banana....rrr"
x = txt.strip(",.grt")
#outputs banana
print(x)

Example 5: .strip() python

xoxo love xoxo
lov
  xoxo love xoxo   
droid is awesome

Tags:

C Example