how to delete the return from string whitespace code example
Example 1: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
Example 2: delete spaces in string python
>>> s.replace(" ", "")
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
>>> s.replace(" ", "")