How to strip (remove) all whitespace from a string in Python

3 Answers

0 votes
s = "python java c#"

s = s.replace(" ", "")

print(s)


'''
run:

pythonjavac#

'''

 



answered Oct 25, 2017 by avibootz
0 votes
s = "python  \t  java     \n   c#"

s = "".join(s.split())

print(s)


'''
run:

pythonjavac#

'''

 



answered Oct 25, 2017 by avibootz
0 votes
import re

s = "python  \t  java     \n   c#"

s = re.sub(r'\s+', '', s)

print(s)


'''
run:

pythonjavac#

'''

 



answered Oct 25, 2017 by avibootz

Related questions

2 answers 441 views
1 answer 187 views
6 answers 728 views
1 answer 130 views
2 answers 264 views
...