How do I strip all the spaces in a python string? For example, I want a string like strip my spaces to be turned into stripmyspaces, but I cannot seem to accomplish that with strip():
>>> 'strip my spaces'.strip()
'strip my spaces'
|
How do I strip all the spaces in a python string? For example, I want a string like
|
|||||||
|
|
Taking advantage of str.split's behavior with no sep parameter:
If you just want to remove spaces instead of all whitespace:
Premature optimizationEven though efficiency isn't the primary goal—writing clear code is—here are some initial timings:
Note the regex is cached, so it's not as slow as you'd imagine. Compiling it beforehand helps some, but would only matter in practice if you call this many times:
Even though re.sub is 11.3x slower, remember your bottlenecks are assuredly elsewhere. Most programs would not notice the difference between any of these 3 choices. |
|||||||||||||
|
Also handles any whitespace characters that you're not thinking of (believe me, there are plenty). |
|||
|
|
|
The simplest is to use replace:
Alternatively, use a regular expression:
|
|||
|
|
|
Try a regex with
|
|||||
|