get rid of whitespace in string python code example
Example 1: python delete white spaces
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
Example 2: strip whitespace python
>>> s.strip()
'Hello World From Pankaj \t\n\r\tHi There'