how to remove spaces, comma in string in python code example
Example: python 3 replace all whitespace characters
>>> s = " \t foo \n bar "
>>> "".join(s.split())
'foobar'
>>> s = " \t foo \n bar "
>>> "".join(s.split())
'foobar'