Answers for "remove white space strings from array of strings python"

11

python delete white spaces

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

python remove white space

>>> '     hello world!    '.strip() #remove both
'hello world!'

>>> '     hello world!'.lstrip() #remove leading whitespace
'hello world!'
Posted by: Guest on November-23-2021

Code answers related to "remove white space strings from array of strings python"

Python Answers by Framework

Browse Popular Code Answers by Language