Answers for "python white space strip"

5

strip whitespace python

>>> s.strip()
'Hello  World   From Pankaj tnrtHi There'
Posted by: Guest on February-19-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 white space strip"

Python Answers by Framework

Browse Popular Code Answers by Language