Answers for "remove space of string python"

6

how to remove spaces in string in python

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

Code answers related to "remove space of string python"

Python Answers by Framework

Browse Popular Code Answers by Language