Answers for "function(s) would be useful in removing the white space characters(spaces) from the string in the python"

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 "function(s) would be useful in removing the white space characters(spaces) from the string in the python"

Python Answers by Framework

Browse Popular Code Answers by Language