Return a copy of `self` with only the first character of each element capitalized. See also -------- char.capitalize
(self)
| 2162 | argsort.__doc__ = ndarray.argsort.__doc__ |
| 2163 | |
| 2164 | def capitalize(self): |
| 2165 | """ |
| 2166 | Return a copy of `self` with only the first character of each element |
| 2167 | capitalized. |
| 2168 | |
| 2169 | See also |
| 2170 | -------- |
| 2171 | char.capitalize |
| 2172 | |
| 2173 | """ |
| 2174 | return asarray(capitalize(self)) |
| 2175 | |
| 2176 | def center(self, width, fillchar=' '): |
| 2177 | """ |