Return a copy of `self` with its elements centered in a string of length `width`. See Also -------- center
(self, width, fillchar=' ')
| 759 | return asarray(capitalize(self)) |
| 760 | |
| 761 | def center(self, width, fillchar=' '): |
| 762 | """ |
| 763 | Return a copy of `self` with its elements centered in a |
| 764 | string of length `width`. |
| 765 | |
| 766 | See Also |
| 767 | -------- |
| 768 | center |
| 769 | """ |
| 770 | return asarray(center(self, width, fillchar)) |
| 771 | |
| 772 | def count(self, sub, start=0, end=None): |
| 773 | """ |