Python Numpy np.char.endswith() 方法
在np.char.endswith()方法的帮助下,当数值以np.char.endswith()方法中传递的特定字符结束时,我们可以得到布尔阵列
语法: np.char.endswith()
返回值: 当值以一个值结束时,返回布尔数组.
示例1 :
在这个例子中,我们可以看到,通过使用np.char.endswith()方法,当与np.char.endswith()方法中的字符串值匹配时,我们能够得到布尔数组
# import numpy
import numpy as np
# using np.char.endswith() method
a = np.array(['geeks', 'for', 'geeks'])
gfg = np.char.endswith(a, 'ks')
print(gfg)
输出:
[ True False True]
示例2 :
# import numpy
import numpy as np
# using np.char.endswith() method
a = np.array([['geeks', 'for', 'geeks'], ['jitender', 'author', 'gfg']])
gfg = np.char.endswith(a, 'r')
print(gfg)
输出:
[[False True False]
[ True True False]]