numpy.char.not_equal#

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

返回 (x1 != x2) 逐元素比较的结果。

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

参数:
x1, x2类数组,包含 str 或 unicode 类型

形状相同的输入数组。

返回:
outndarray

布尔值的输出数组。

示例

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