.strip function 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
' hey '.strip()
' hey '.lstrip()
' hey '.rstrip()
'_.hey__'.strip('._')
Example 4: python strip
txt = " test "
txt.strip()
txt.lstrip()
txt.rstrip()
Example 5: .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 6: 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)