Answers for "how to escpe space white space in string 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

Python Answers by Framework

Browse Popular Code Answers by Language