For each element in `self`, return a copy with the leading characters removed. See Also -------- char.lstrip
(self, chars=None)
| 2487 | return asarray(lower(self)) |
| 2488 | |
| 2489 | def lstrip(self, chars=None): |
| 2490 | """ |
| 2491 | For each element in `self`, return a copy with the leading characters |
| 2492 | removed. |
| 2493 | |
| 2494 | See Also |
| 2495 | -------- |
| 2496 | char.lstrip |
| 2497 | |
| 2498 | """ |
| 2499 | return asarray(lstrip(self, chars)) |
| 2500 | |
| 2501 | def partition(self, sep): |
| 2502 | """ |