Answers for "python remove space in a sentence"

1

python remove spaces

#If you want to remove LEADING and ENDING spaces, use str.strip():

sentence = ' hello  apple'
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on July-20-2021

Code answers related to "python remove space in a sentence"

Python Answers by Framework

Browse Popular Code Answers by Language