remove extra spaces in python string 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: python remove spaces
string=' t e s t '
print(string.replace(' ',''))
"\n".join([s for s in code.split("\n") if s])
string=' t e s t '
print(string.replace(' ',''))