Answers for "python delete white spaces longer than 1 from string"

11

python delete white spaces

sentence = ' hello  apple'
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on May-08-2020
0

how to strip white space of text in python?

sentence = ' hello  apple'
" ".join(sentence.split())
>>> 'hello apple'
Posted by: Guest on March-26-2021

Code answers related to "python delete white spaces longer than 1 from string"

Python Answers by Framework

Browse Popular Code Answers by Language