This function can be used to remove all white-space characters from the start of a string. Whitespace characters include spaces, tabs, new-line characters etc.
This function does not generate a change.
str.trim_left()
None
Returns a new string with whitespace characters removed from the start of the string.
Example using trim_left():
' Hello World!! '.trim_left();
Return value in JSON format
"Hello World!! "