Answers for "remove redundant 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
6

how to remove spaces in string in python

sentence = '       hello  apple         '
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on May-22-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

Code answers related to "remove redundant spaces python"

Python Answers by Framework

Browse Popular Code Answers by Language