Partition each element in `self` around `sep`. See Also -------- rpartition
(self, sep)
| 2558 | return asarray(rjust(self, width, fillchar)) |
| 2559 | |
| 2560 | def rpartition(self, sep): |
| 2561 | """ |
| 2562 | Partition each element in `self` around `sep`. |
| 2563 | |
| 2564 | See Also |
| 2565 | -------- |
| 2566 | rpartition |
| 2567 | """ |
| 2568 | return asarray(rpartition(self, sep)) |
| 2569 | |
| 2570 | def rsplit(self, sep=None, maxsplit=None): |
| 2571 | """ |