Return an array with the elements of `self` left-justified in a string of length `width`. See also -------- char.ljust
(self, width, fillchar=' ')
| 2367 | return join(self, seq) |
| 2368 | |
| 2369 | def ljust(self, width, fillchar=' '): |
| 2370 | """ |
| 2371 | Return an array with the elements of `self` left-justified in a |
| 2372 | string of length `width`. |
| 2373 | |
| 2374 | See also |
| 2375 | -------- |
| 2376 | char.ljust |
| 2377 | |
| 2378 | """ |
| 2379 | return asarray(ljust(self, width, fillchar)) |
| 2380 | |
| 2381 | def lower(self): |
| 2382 | """ |