Answers for "remove duplicate spaces python"

3

remove extra spaces python

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

strip whitespace python

>>> s.strip()
'Hello  World   From Pankaj tnrtHi There'
Posted by: Guest on February-19-2020
0

remove duplicate space in string in pytoon

>>> import re
>>> re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Posted by: Guest on May-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language