remove extra space from string 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: python remove space from end of string
>>> " xyz ".rstrip()
' xyz'