Numpy 的 count(~)
方法返回一個 Numpy 數組,其中包含給定子字符串在每個輸入字符串中出現的次數。
參數
1. a
| array-like
源字符串數組。
2. sub
| string
要計數的子字符串。
3. start
| int
| optional
從中進行計數的起始索引。
4. end
| int
| optional
計數的結束索引。
返回值
一個 Numpy 整數數組,表示輸入字符串中子字符串的計數。
例子
簡單計數
np.char.count(["aacd", "abc"], "a")
array([2, 1])
指定起始索引
np.char.count(["aacd", "abc"], "a", start=1)
array([1, 0])
由於我們從索引 1 開始,因此我們不包括索引 0 處的a
。
指定結束索引
np.char.count(["aacd", "abc"], "a", end=1)
array([1, 1])
由於我們忽略了索引 1 及其之後的所有字符,因此每個字符的計數僅為 1。
相關用法
- 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 rjust方法用法及代碼示例
- Python NumPy char rstrip方法用法及代碼示例
- 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 | count method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。