Answers for "remove spaces from input python"

6

how to remove spaces in string in python

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

how remove spaces python input

.strip()
Posted by: Guest on March-30-2021

Code answers related to "remove spaces from input python"

Python Answers by Framework

Browse Popular Code Answers by Language