.strip() in python code example

Example 1: strip in python

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

Example 2: python strip

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

Example 3: strip()

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

Example 4: python input().strip()

txt = "     banana     "
x = txt.strip()
print("of all fruits", x, "is my favorite")

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

Example 5: python strip()

a = "  smurf   "

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