Return an array with the elements of `self` right-justified in a string of length `width`. See Also -------- char.rjust
(self, width, fillchar=' ')
| 2546 | return rindex(self, sub, start, end) |
| 2547 | |
| 2548 | def rjust(self, width, fillchar=' '): |
| 2549 | """ |
| 2550 | Return an array with the elements of `self` |
| 2551 | right-justified in a string of length `width`. |
| 2552 | |
| 2553 | See Also |
| 2554 | -------- |
| 2555 | char.rjust |
| 2556 | |
| 2557 | """ |
| 2558 | return asarray(rjust(self, width, fillchar)) |
| 2559 | |
| 2560 | def rpartition(self, sep): |
| 2561 | """ |