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 ".rstrip() ' xyz'
more about rstrip in docs
rstrip