clear all whitespace python code example
Example: remove all whitespace from string python
import re
s = '\n \t this is a string with a lot of whitespace\t'
s = re.sub('\s+', '', s)
import re
s = '\n \t this is a string with a lot of whitespace\t'
s = re.sub('\s+', '', s)