Answers for "remove all extra spaces python"

4

remove multiple space python

import re
re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Posted by: Guest on August-05-2020
2

how to remove all spaces from a string in python

string = "Hello, world! Some more text here..." # Just a string
string.replace(" ", "") # Replaces all instances of " " (spaces)with "" (nothing)

# string is now "Hello,World!Somemoretexthere..."
# I hope I helped you! ;)
Posted by: Guest on March-11-2021
3

remove extra spaces python

>>> import re
>>> re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Posted by: Guest on July-14-2020

Code answers related to "remove all extra spaces python"

Python Answers by Framework

Browse Popular Code Answers by Language