remove initial space python

Solutions on MaxInterview for remove initial space python by the best coders in the world

showing results for - "remove initial space python"
Selena
10 May 2018
1>>> '     hello world!'.lstrip()
2'hello world!'
3