remove trailing spaces in python string code example
Example 1: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
Example 2: remove after and before space python
st = " a "
strip(st)
#Output : "a"
Example 3: python remove spaces
string=' t e s t '
print(string.replace(' ',''))