Partition each element in `self` around `sep`. See Also -------- rpartition
(self, sep)
| 1048 | return asarray(rjust(self, width, fillchar)) |
| 1049 | |
| 1050 | def rpartition(self, sep): |
| 1051 | """ |
| 1052 | Partition each element in `self` around `sep`. |
| 1053 | |
| 1054 | See Also |
| 1055 | -------- |
| 1056 | rpartition |
| 1057 | """ |
| 1058 | return asarray(rpartition(self, sep)) |
| 1059 | |
| 1060 | def rsplit(self, sep=None, maxsplit=None): |
| 1061 | """ |