numpy.char.greater_equal#

char.greater_equal(x1, x2)[源代码]#

返回元素级的 (x1 >= x2)。

numpy.greater_equal 不同,此比较首先会去除字符串末尾的空格字符。此行为是为了与 numarray 向后兼容而提供的。

参数:
x1, x2str 或 unicode 的类数组

相同形状的输入数组。

返回:
outndarray

布尔值的输出数组。

示例

>>> import numpy as np
>>> x1 = np.array(['a', 'b', 'c'])
>>> np.char.greater_equal(x1, 'b')
array([False,  True,  True])