how to remove white space in the middle of a string in python code example
Example: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'