Python Trim Whitpace desde el final de la cadena
>>> " xyz ".rstrip()
' xyz'
Embarrassed Earthworm
>>> " xyz ".rstrip()
' xyz'
>>> ' hello world!'.lstrip()
'hello world!'