python how to remove a whitewhite space between two strings code example
Example: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'