Answers for "trimming white space at the end of string python"

2

python trim whitespace from end of string

>>> "    xyz     ".rstrip()
'    xyz'
Posted by: Guest on May-07-2020
0

how to strip white space of text in python?

sentence = ' hello  apple'
" ".join(sentence.split())
>>> 'hello apple'
Posted by: Guest on March-26-2021

Code answers related to "trimming white space at the end of string python"

Python Answers by Framework

Browse Popular Code Answers by Language