Numpy 的 isnumeric(~)
方法检查输入数组的每个字符串是否都是数字。与方法 isdigit(~)
和 isdecimal(~)
不同, isnumeric(~)
还扩展到其他语言。
警告
带点的数字不符合数字条件
例如,"2"
符合数字要求,但带有点的 "2.5"
则不符合数字要求。
参数
1. a
| array-like
输入数组。
返回值
如果 a
是标量,则返回单个布尔值。否则,返回一个 Numpy 布尔数组。
例子
np.char.isnumeric(["2.5", "", "3", "0", "五"])
array([False, False, True, True, True])
在此,请注意以下事项:
-
"2.5"
确实代表一个数字,但返回 False。 -
"五"
,在中文/日文中表示 5,返回 True。
相关用法
- Python string isnumeric()用法及代码示例
- Python Pandas isnull方法用法及代码示例
- Python NumPy isnat方法用法及代码示例
- Python math isnan()用法及代码示例
- Python NumPy isneginf方法用法及代码示例
- Python NumPy isnan方法用法及代码示例
- Python isinstance方法用法及代码示例
- Python string isidentifier()用法及代码示例
- Python calendar isleap()用法及代码示例
- Python math isclose()用法及代码示例
- Python NumPy isalnum方法用法及代码示例
- Python string isupper()用法及代码示例
- Python string isalnum()用法及代码示例
- Python isdisjoint()用法及代码示例
- Python NumPy isposinf方法用法及代码示例
- Python issubclass()用法及代码示例
- Python NumPy isreal方法用法及代码示例
- Python string istitle()用法及代码示例
- Python NumPy isclose方法用法及代码示例
- Python NumPy iscomplexobj方法用法及代码示例
- Python string isalpha()用法及代码示例
- Python NumPy isrealobj方法用法及代码示例
- Python NumPy isfinite方法用法及代码示例
- Python string isdigit()用法及代码示例
- Python NumPy isalpha方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | isnumeric method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。