what is strip in python code example
Example 1: python strip characters
string = " python strip method test "
print(string)
print(string.strip())
print(string.strip(' strip'))
Output:
python strip method test
python strip method test
python method test
Example 2: strip in python
txt = " banana "
x = txt.strip()
Example 3: python strip
txt = " test "
txt.strip()
txt.lstrip()
txt.rstrip()
Example 4: python strip
' hey '.strip()
' hey '.lstrip()
' hey '.rstrip()
'_.hey__'.strip('._')
Example 5: strip()
txt = ",,,,,rrttgg.....banana....rrr"
x = txt.strip(",.grt")
print(x)
Example 6: python strip()
a = " smurf "
a = a.strip()
print(a)