Answers for "python remove large whitespace"

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 "python remove large whitespace"

Python Answers by Framework

Browse Popular Code Answers by Language