python remove spaces in string 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: how to remove spaces in string in python
sentence = ' hello apple '
sentence.strip()
>>> 'hello apple'
Example 4: python trim whitespace from end of string
>>> " xyz ".rstrip()
' xyz'
Example 5: python remove spaces from string
>>> " ".join(s.split())
'Hello World From Pankaj Hi There'