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