python whitespace replace code example
Example 1: remove after and before space python
st = " a "
strip(st)
#Output : "a"
Example 2: python remove spaces from string
>>> " ".join(s.split())
'Hello World From Pankaj Hi There'
st = " a "
strip(st)
#Output : "a"
>>> " ".join(s.split())
'Hello World From Pankaj Hi There'