Return an array with the elements of `self` left-justified in a string of length `width`. See Also -------- char.ljust
(self, width, fillchar=' ')
| 953 | return join(self, seq) |
| 954 | |
| 955 | def ljust(self, width, fillchar=' '): |
| 956 | """ |
| 957 | Return an array with the elements of `self` left-justified in a |
| 958 | string of length `width`. |
| 959 | |
| 960 | See Also |
| 961 | -------- |
| 962 | char.ljust |
| 963 | |
| 964 | """ |
| 965 | return asarray(ljust(self, width, fillchar)) |
| 966 | |
| 967 | def lower(self): |
| 968 | """ |