how to remove white space between stiirng py code example
Example: how to strip white space of text in python?
sentence = ' hello apple'
" ".join(sentence.split())
>>> 'hello apple'
sentence = ' hello apple'
" ".join(sentence.split())
>>> 'hello apple'