Numpy 的 capitalize(~)
方法将每个输入字符串的第一个字符转换为大写,其余所有字符转换为小写(例如 Hello world)。
参数
1. a
| array-like
输入数组。
返回值
一个 Numpy 数组。
例子
np.char.capitalize(["hello world"])
array(['Hello world'], dtype='<U11')
相关用法
- Python Method char center方法用法及代码示例
- Python Method char zfill方法用法及代码示例
- Python Method Overloading用法及代码示例
- Python PIL MedianFilter() and ModeFilter()用法及代码示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代码示例
- Python Matplotlib.figure.Figure.subplots_adjust()用法及代码示例
- Python Matplotlib.pyplot.matshow()用法及代码示例
- Python Matplotlib.axis.Axis.get_tick_space()用法及代码示例
- Python Matplotlib.pyplot.thetagrids()用法及代码示例
- Python Django ModelAdmin.get_changeform_initial_data用法及代码示例
- Python Matplotlib.axes.Axes.text()用法及代码示例
- Python Matplotlib.pyplot.ion()用法及代码示例
- Python Matplotlib.axes.Axes.start_pan()用法及代码示例
- Python Django ModelAdmin.get_formset_kwargs用法及代码示例
- Python Matplotlib.axes.Axes.get_ylabel()用法及代码示例
- Python Matplotlib.axis.Axis.get_major_locator()用法及代码示例
- Python Numpy MaskedArray.argmin()用法及代码示例
- Python Matplotlib.axis.Tick.get_window_extent()用法及代码示例
- Python Matplotlib.artist.Artist.set_alpha()用法及代码示例
- Python Matplotlib.pyplot.xkcd()用法及代码示例
- Python Matplotlib.colors.TwoSlopeNorm用法及代码示例
- Python Matplotlib.pyplot.axvspan()用法及代码示例
- Python Matplotlib.axis.Axis.get_agg_filter()用法及代码示例
- Python Matplotlib.axis.Axis.get_minorticklabels()用法及代码示例
- Python Matplotlib.axes.Axes.set_ybound()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Method char | capitalize method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。