strip() function in python code example
Example 1: strip in python
txt = " banana "
x = txt.strip()
Example 2: python strip
txt = " test "
txt.strip()
txt.lstrip()
txt.rstrip()
Example 3: python strip
' hey '.strip()
' hey '.lstrip()
' hey '.rstrip()
'_.hey__'.strip('._')
Example 4: .strip() python
string = ' xoxo love xoxo '
print(string.strip())
print(string.strip(' xoe'))
print(string.strip('stx'))
string = 'android is awesome'
print(string.strip('an'))
Example 5: python strip()
a = " smurf "
a = a.strip()
print(a)