numpy.core.defchararray.isnumeric

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

译者:飞龙 UsyiyiCN

校对:(虚位以待)

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

对于每个元素,如果元素中只有数字字符,则返回True。

逐个调用unicode.isnumeric

数字字符包括数字字符,以及具有Unicode数字值属性的所有字符。 U + 2155, VULGAR FRACTION ONE FIFTH

参数:

a:array_like,unicode

输入数组。

返回:

out:ndarray,bool

a形状相同的布尔数组。

也可以看看

unicode.isnumeric