numpy.char.endswith #

字符。endswith ( a , suffix , start = 0 , end = None ) [来源] #

返回一个布尔数组,其中a中的字符串元素以suffix结尾的情况下为True,否则为False

按元素调用str.endswith 。

参数
str 或 unicode 的array_like
后缀字符串
开始,结束int,可选

使用可选的start,从该位置开始测试。使用可选的end,在该位置停止比较。

返回
输出数组

输出布尔数组。

也可以看看

str.endswith

例子

>>> s = np.array(['foo', 'bar'])
>>> s[0] = 'foo'
>>> s[1] = 'bar'
>>> s
array(['foo', 'bar'], dtype='<U3')
>>> np.char.endswith(s, 'ar')
array([False,  True])
>>> np.char.endswith(s, 'a', start=1, end=2)
array([False,  True])