Return an array with the elements of `self` right-justified in a string of length `width`. See Also -------- char.rjust
(self, width, fillchar=' ')
| 1036 | return rindex(self, sub, start, end) |
| 1037 | |
| 1038 | def rjust(self, width, fillchar=' '): |
| 1039 | """ |
| 1040 | Return an array with the elements of `self` |
| 1041 | right-justified in a string of length `width`. |
| 1042 | |
| 1043 | See Also |
| 1044 | -------- |
| 1045 | char.rjust |
| 1046 | |
| 1047 | """ |
| 1048 | return asarray(rjust(self, width, fillchar)) |
| 1049 | |
| 1050 | def rpartition(self, sep): |
| 1051 | """ |