NumPy 的 np.char.center(~)
方法向輸入字符串添加填充,使它們具有指定的長度,並將字符串放置在中心。
參數
1. a
| array-like
輸入數組。
2. width
| int
每個字符串所需的長度。
3. fillchar
| string
或 unicode
| optional
如果指定的寬度超過輸入字符串的大小,則要填充的字符。默認情況下,將添加一個空格。
返回值
NumPy 字符串數組,每個字符串的大小恰好是 width
,額外的空格由 fillchar
填充。
例子
字符串大小大於寬度的情況
np.char.center(["abcd", "efg"], 2)
array(['ab', 'ef'], dtype='<U2')
由於指定的寬度大於字符串的大小,因此僅提取前 2 個字符。
需要填充時的情況
np.char.center(["abcd", "e"], 2)
array(['ab', 'e '], dtype='<U2')
請注意如何向 'e '
添加空格以確保每個返回的字符串的長度為 2,以及當寬度為偶數時字符如何右對齊。
如果我們指定寬度為 3,我們將看到 'e'
放置在中心:
np.char.center(["abcd", "e"], 3)
array(['abc', ' e '], dtype='<U3')
指定自定義填充符
我們可以指定自己的字符來填充,而不是空白:
np.char.center(["abcd", "e"], 3, "z")
array(['abc', 'zez'], dtype='<U3')
相關用法
- Python Method char capitalize方法用法及代碼示例
- 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 | center method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。