Numpy 的 isdigit(~)
方法檢查輸入數組的每個字符串是否是數字。
警告
帶點的數字不符合數字條件
例如,"2"
符合數字要求,但帶有點的 "2.5"
則不符合數字要求。
參數
1. a
| array-like
輸入數組。
返回值
如果 a
是標量,則返回單個布爾值。否則,返回一個 Numpy 布爾數組。
例子
np.char.isdigit(["2.5", "", "3", "0"])
array([False, False, True, True])
請注意代表數字的 "2.5"
如何返回 False。
相關用法
- Python string isdigit()用法及代碼示例
- Python isdisjoint()用法及代碼示例
- Python string isdecimal()用法及代碼示例
- Python NumPy isdecimal方法用法及代碼示例
- Python isinstance方法用法及代碼示例
- Python string isidentifier()用法及代碼示例
- Python calendar isleap()用法及代碼示例
- Python math isclose()用法及代碼示例
- Python NumPy isalnum方法用法及代碼示例
- Python NumPy isnat方法用法及代碼示例
- Python string isupper()用法及代碼示例
- Python string isalnum()用法及代碼示例
- Python Pandas isnull方法用法及代碼示例
- Python NumPy isposinf方法用法及代碼示例
- Python issubclass()用法及代碼示例
- Python NumPy isreal方法用法及代碼示例
- Python string istitle()用法及代碼示例
- Python NumPy isclose方法用法及代碼示例
- Python math isnan()用法及代碼示例
- Python NumPy iscomplexobj方法用法及代碼示例
- Python string isalpha()用法及代碼示例
- Python NumPy isnumeric方法用法及代碼示例
- Python NumPy isrealobj方法用法及代碼示例
- Python NumPy isfinite方法用法及代碼示例
- Python NumPy isalpha方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | isdigit method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。