python how to remove blank spaces from string 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"