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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。