python replace spaces with nothing code example
Example 1: replace multiple spaces with single space python
' '.join(mystring.split())
Example 2: space to underscore python
mystring.replace(" ", "_")
Example 3: remove spaces from string python
s = ' Hello World From Pankaj \t\n\r\t Hi There '
>>> s.replace(" ", "")
'HelloWorldFromPankaj\t\n\r\tHiThere'
Example 4: python remove spaces
string=' t e s t '
print(string.replace(' ',''))