Answers for "how to extract white spaces python"

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
0

python string remove whitespace

' sss d ssd s'.replace(" ", "")
# output: 'sssdssds'
Posted by: Guest on February-25-2021

Code answers related to "how to extract white spaces python"

Python Answers by Framework

Browse Popular Code Answers by Language