remove blank space python code example
Example 1: python remove spaces
string=' t e s t '
print(string.replace(' ',''))
Example 2: python string remove whitespace
' sss d ssd s'.replace(" ", "")
# output: 'sssdssds'
string=' t e s t '
print(string.replace(' ',''))
' sss d ssd s'.replace(" ", "")
# output: 'sssdssds'