For each element in `self`, return a copy with the leading characters removed. See Also -------- char.lstrip
(self, chars=None)
| 977 | return asarray(lower(self)) |
| 978 | |
| 979 | def lstrip(self, chars=None): |
| 980 | """ |
| 981 | For each element in `self`, return a copy with the leading characters |
| 982 | removed. |
| 983 | |
| 984 | See Also |
| 985 | -------- |
| 986 | char.lstrip |
| 987 | |
| 988 | """ |
| 989 | return lstrip(self, chars) |
| 990 | |
| 991 | def partition(self, sep): |
| 992 | """ |