Python Trim Whitespace dari ujung string
>>> " xyz ".rstrip()
' xyz'
Embarrassed Earthworm
>>> " xyz ".rstrip()
' xyz'
>>> ' hello world!'.lstrip()
'hello world!'