Partition each element in `self` around `sep`. See Also -------- partition
(self, sep)
| 2499 | return asarray(lstrip(self, chars)) |
| 2500 | |
| 2501 | def partition(self, sep): |
| 2502 | """ |
| 2503 | Partition each element in `self` around `sep`. |
| 2504 | |
| 2505 | See Also |
| 2506 | -------- |
| 2507 | partition |
| 2508 | """ |
| 2509 | return asarray(partition(self, sep)) |
| 2510 | |
| 2511 | def replace(self, old, new, count=None): |
| 2512 | """ |