Which function is used to get rid of the blank spaces on the left? in python code example
Example 1: remove spaces from string python
s = ' Hello World From Pankaj \t\n\r\t Hi There '
>>> s.replace(" ", "")
'HelloWorldFromPankaj\t\n\r\tHiThere'
Example 2: python how to get rid of spaces in print
print('\n{} you will be {} in ten years.'.format(name, ageinten))