numpy.core.defchararray.isdigit

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.core.defchararray.isdigit.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.core.defchararray.isdigit(a)[source]

如果字符串中的所有字符都是数字,并且至少有一个字符,则返回true,否则返回false。

逐个调用str.isdigit

对于8位字符串,此方法依赖于区域设置。

参数:

a:array_like of str或unicode

返回:

out:ndarray

输出数组的bools

也可以看看

str.isdigit