Return a copy of `self` with only the first character of each element capitalized. See Also -------- char.capitalize
(self)
| 2258 | argsort.__doc__ = ndarray.argsort.__doc__ |
| 2259 | |
| 2260 | def capitalize(self): |
| 2261 | """ |
| 2262 | Return a copy of `self` with only the first character of each element |
| 2263 | capitalized. |
| 2264 | |
| 2265 | See Also |
| 2266 | -------- |
| 2267 | char.capitalize |
| 2268 | |
| 2269 | """ |
| 2270 | return asarray(capitalize(self)) |
| 2271 | |
| 2272 | def center(self, width, fillchar=' '): |
| 2273 | """ |