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