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