NumPy 的 np.char.rjust(~)
方法向輸入字符串添加填充,使它們具有指定的長度,並將字符串放置在右側。
參數
1. a
| array-like
輸入數組。
2. width
| int
每個字符串所需的長度。
3. fillchar
| string
或 unicode
| optional
如果指定的寬度超過輸入字符串的大小,則要填充的字符。默認情況下,將添加一個空格。
返回值
NumPy 字符串數組,每個字符串的大小恰好是 width
,額外的空格由 fillchar
填充。
例子
字符串大小大於寬度的情況
np.char.rjust(["abcd", "efg"], 2)
array(['ab', 'ef'], dtype='<U2')
由於指定的寬度大於字符串的大小,因此提取前 2 個字符。您可能想知道為什麽選擇最後兩個字符(畢竟它是右對齊的) - 像這樣的情況,當輸入字符串溢出時,總是提取前兩個字符。正確的行為適用於其他情況。
需要填充時的情況
np.char.rjust(["abcd", "e"], 2)
array(['ab', ' e'], dtype='<U2')
請注意如何向 ' e'
添加空格以確保每個返回的字符串的長度為 2,以及字符如何右對齊。
指定自定義填充符
我們可以指定自己的字符來填充,而不是空白:
np.char.rjust(["abcd", "e"], 2, "z")
array(['ab', 'ze'], dtype='<U2')
在這裏,我們得到的不是" e"
,而是"ze"
。
相關用法
- Python NumPy char rstrip方法用法及代碼示例
- Python NumPy char find方法用法及代碼示例
- Python NumPy char less_equal方法用法及代碼示例
- Python NumPy char greater方法用法及代碼示例
- Python NumPy char equal方法用法及代碼示例
- Python NumPy char lower方法用法及代碼示例
- Python NumPy char less方法用法及代碼示例
- Python NumPy char split方法用法及代碼示例
- Python NumPy char greater_equal方法用法及代碼示例
- Python NumPy char multiply方法用法及代碼示例
- Python NumPy char upper方法用法及代碼示例
- Python NumPy char not_equal方法用法及代碼示例
- Python NumPy char isupper方法用法及代碼示例
- Python NumPy char add方法用法及代碼示例
- Python NumPy char count方法用法及代碼示例
- Python NumPy char ljust方法用法及代碼示例
- Python Wand charcoal()用法及代碼示例
- Python numpy chararray.tostring用法及代碼示例
- Python numpy char.chararray.tostring用法及代碼示例
- Python NumPy choose方法用法及代碼示例
- Python chr方法用法及代碼示例
- Python chr()用法及代碼示例
- Python NumPy choice方法用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy char | rjust method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。