The following code removes tabs and newlines from given string
Example
import re print re.sub(r"\s+", " ", """I find Tutorialspoint helpful""")
Output
This gives output
I find Tutorialspoint helpful
The following code removes tabs and newlines from given string
import re print re.sub(r"\s+", " ", """I find Tutorialspoint helpful""")
This gives output
I find Tutorialspoint helpful