Answers for "replace multiple spaces with single space python"

3

remove multiple space python

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

replace multiple spaces with single space python

' '.join(myString.split())
Posted by: Guest on July-11-2020
0

python replace two spaces with one

" ".join(filter(bool, mystring.split(" ")))
Posted by: Guest on July-05-2021

Code answers related to "replace multiple spaces with single space python"

Python Answers by Framework

Browse Popular Code Answers by Language