strip pythn 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"