how to remove spaces with strip code example
Example 1: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
Example 2: remove after and before space python
st = " a "
strip(st)
#Output : "a"
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
st = " a "
strip(st)
#Output : "a"