Numpy 的 zfill(~)
方法 left-fills 将输入数组的每个值都加零,直到达到指定的宽度。
参数
1. a
| array-like
输入数组
2. width
| int
填充所需的长度。
返回值
一个 Numpy 字符串数组。
例子
基本用法
np.char.zfill(["ab", 2], 5)
array(['000ab', '00002'], dtype='<U5')
溢出案例
np.char.zfill(["abc", 3000], 2)
array(['ab', '30'], dtype='<U2')
相关用法
- Python Method char capitalize方法用法及代码示例
- Python Method char center方法用法及代码示例
- 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 | zfill method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。