remove extra unnecessary space from string in python code example
Example 1: remove extra spaces and empty lines from string python
"\n".join([s for s in code.split("\n") if s])
Example 2: remove extra spaces python
>>> import re
>>> re.sub(' +', ' ', 'The quick brown fox')
'The quick brown fox'