python remove empty spaces code example
Example 1: how to remove spaces in string in python
sentence = ' hello apple '
sentence.strip()
>>> 'hello apple'
Example 2: python remove spaces from string
>>> " ".join(s.split())
'Hello World From Pankaj Hi There'