For each element in `self`, return a copy with the leading characters removed. See also -------- char.lstrip
(self, chars=None)
| 2391 | return asarray(lower(self)) |
| 2392 | |
| 2393 | def lstrip(self, chars=None): |
| 2394 | """ |
| 2395 | For each element in `self`, return a copy with the leading characters |
| 2396 | removed. |
| 2397 | |
| 2398 | See also |
| 2399 | -------- |
| 2400 | char.lstrip |
| 2401 | |
| 2402 | """ |
| 2403 | return asarray(lstrip(self, chars)) |
| 2404 | |
| 2405 | def partition(self, sep): |
| 2406 | """ |
no test coverage detected