numpy.char.startswith#

char.startswith(a, prefix, start=0, end=None)[source]#

返回一个布尔数组,其中 True 表示 a 中的字符串元素以 prefix 开头,否则为 False

参数:
a类数组,具有 StringDTypebytes_str_ 数据类型
prefix类数组,具有 StringDTypebytes_str_ 数据类型
start, end类数组,具有任何整数数据类型

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

返回值:
outndarray

布尔值的输出数组

示例

>>> import numpy as np
>>> s = np.array(['foo', 'bar'])
>>> s
array(['foo', 'bar'], dtype='<U3')
>>> np.strings.startswith(s, 'fo')
array([True,  False])
>>> np.strings.startswith(s, 'o', start=1, end=2)
array([True,  False])