remove trailing space in python string code example
Example 1: python remove spaces
string=' t e s t '
print(string.replace(' ',''))
Example 2: python remove space from end of string
>>> " xyz ".rstrip()
' xyz'
string=' t e s t '
print(string.replace(' ',''))
>>> " xyz ".rstrip()
' xyz'