python strip multiple whitespace code example
Example 1: replace multiple spaces with single space python
' '.join(mystring.split())
Example 2: trim multiple spaces in python
>>> import re
>>> re.sub(' +', ' ', 'The quick brown fox')
'The quick brown fox'