NumPy 的 np.char.greater(~)
方法將兩個字符串數組作為輸入,然後執行成對字符串比較以輸出 NumPy 布爾值數組。
參數
1. x1
| array-like
第一個輸入數組。
2. x2
| array-like
第二個輸入數組。
返回值
NumPy 布爾值數組。
例子
np.char.greater(["a", "d", "e"], ["b", "c", "e"])
array([False, True, False])
在這裏,我們進行以下比較:
-
"a"
>"b"
(假) -
"d"
>"c"
(真) -
"e"
>"e"
(假)
相關用法
- Python NumPy char greater_equal方法用法及代碼示例
- Python NumPy char find方法用法及代碼示例
- Python NumPy char less_equal方法用法及代碼示例
- Python NumPy char equal方法用法及代碼示例
- Python NumPy char lower方法用法及代碼示例
- Python NumPy char less方法用法及代碼示例
- Python NumPy char split方法用法及代碼示例
- 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 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 | greater method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。