python remove excess spaces code example
Example: remove extra spaces python
>>> import re
>>> re.sub(' +', ' ', 'The quick brown fox')
'The quick brown fox'
>>> import re
>>> re.sub(' +', ' ', 'The quick brown fox')
'The quick brown fox'