Strip whitespaces (including newlines) or a set of specified characters from each string in the Series/Index from left side. Replaces any non-strings in Series with NaNs. Equivalent to str.lstrip().
Parameters:
to_strip: str or None, default None
Specifying the set of characters to be removed. All combinations of this set of characters will be stripped. If None then whitespaces are removed.
Returns:
Series or Index of object
Series or Index with the strings being stripped from the left side.
See also:
Series.str.strip
Remove leading and trailing characters in Series/Index.