Partition each element in `self` around `sep`. See Also -------- partition
(self, sep)
| 989 | return lstrip(self, chars) |
| 990 | |
| 991 | def partition(self, sep): |
| 992 | """ |
| 993 | Partition each element in `self` around `sep`. |
| 994 | |
| 995 | See Also |
| 996 | -------- |
| 997 | partition |
| 998 | """ |
| 999 | return asarray(partition(self, sep)) |
| 1000 | |
| 1001 | def replace(self, old, new, count=None): |
| 1002 | """ |