How do I remove whitespace from the end of a string in Python?

python

Solution

>>> "    xyz     ".rstrip()
'    xyz'

There is more about `rstrip` in the documentation.

Problem

I need to remove whitespaces after the word in the string. Can this be done in one line of code? Example: ``` string = " xyz " desired result : " xyz" ```

Original source