numpy.char.greater#
- char.greater(x1, x2)[source]#
逐元素返回 (x1 > x2)。
与
numpy.greater
不同,此比较是在首先去除字符串末尾的空格字符后执行的。此行为是为了与 numarray 保持向后兼容性。- 参数:
- x1, x2str 或 unicode 的 array_like
相同形状的输入数组。
- 返回:
- outndarray
布尔值的输出数组。
参见
示例
>>> import numpy as np >>> x1 = np.array(['a', 'b', 'c']) >>> np.char.greater(x1, 'b') array([False, False, True])